1 /*
2  * $Id: getfillpattern.c,v 0.1 1993/12/10 00:15:31 king Exp king $
3  * Copies a user-defined fill pattern into memory.
4  *
5  * $Log: getfillpattern.c,v $
6  * Revision 0.1  1993/12/10  00:15:31  king
7  * Initial version.
8  *
9  */
10 #include "graphics.h"
11 
getfillpattern(char * pattern)12 void getfillpattern(char *pattern)
13 {
14         XGCValues values;
15 
16         XGetGCValues(dpy, gc, GCFillStyle, &values);
17 }
18