diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-07-31 22:54:01 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-07-31 22:54:01 -0700 |
commit | ce4e11143f982234be1076e384b31228f1cc84ae (patch) | |
tree | af718100e164c7f87ea7412d453aedf33162b591 /src/parse.c | |
parent | 8a3d3a58350506a99efd24f9856466a99bbb9c51 (diff) |
Make more functions static that aren't called from other files
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'src/parse.c')
-rw-r--r-- | src/parse.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/parse.c b/src/parse.c index eb52c62..53cca49 100644 --- a/src/parse.c +++ b/src/parse.c @@ -87,6 +87,7 @@ static int doparse ( int (*ifunc)(void), const char *srctypename, const char *sr static int twmFileInput ( void ); static int twmStringListInput ( void ); static int ParseUsePPosition ( char *s ); +static int ParseStringList ( unsigned char **sl ); extern int yylineno; @@ -222,7 +223,7 @@ int ParseTwmrc (char *filename) } } -int ParseStringList (unsigned char **sl) +static int ParseStringList (unsigned char **sl) { stringListSource = sl; currentString = *sl; @@ -943,7 +944,7 @@ int do_color_keyword (int keyword, int colormode, char *s) /** * Save a pixel value in twm root window color property. */ -void +static void put_pixel_on_root(Pixel pixel) { int i, addPixel = 1; |