#ifndef _WMPARSER_H_ #define _WMPARSER_H_ #include #include "defines.h" #include "wmOptions.h" struct stDirectoryll { char name[PATH_MAX]; struct stDirectoryll *next; }; void fgetvalue(char *,FILE *); void getMiddleValue(char *,char *); void getNameValuePair(char *,char *,char *); struct stDirectoryll *getIconPath(void); int getWMValue(int,char *,char *); void stripQuotes(char *); void expandTilde(char *); #endif