updated docs
[rlserver.git] / util.h
blobc45932a3423323a47b600a13c7d995dcd357b85f
1 #ifndef __RLS_UTIL__
2 #define __RLS_UTIL__
4 void str_replace (char *buf, int size, const char *str, const char *what, const char *to);
6 /*
7 * create directory (at multiple levels, if needed)
8 * NB! assume dir[0] != 0
9 */
10 void make_dir (const char *dir);
12 #endif