Add missing libraries to examples' Makefiles
[dockapps.git] / wmclockmon / wmclockmon-cal / tools.h
blob10b2d26a3dd4f3e116b59b3aba2a6a7a2dfbea5b
1 /*
2 * Tools : memory management, file loading and saving
3 */
5 #ifndef TOOLS_H
6 #define TOOLS_H
8 #include "defines.h"
9 #include <stdio.h>
11 #define FREE(data) {if (data) free (data); data = NULL;}
13 void *xmalloc(size_t size);
14 char *xstrdup(const char *string);
15 int getbool(const char *value);
16 char *robust_home(void);
17 char *get_file(const char *datestr);
19 #endif