server/src/util/path.h

11 lines
169 B
C
Raw Normal View History

2017-12-29 11:44:14 +01:00
#include <stddef.h>
#ifdef WIN32
#define PATH_DELIM '\\'
#else
#define PATH_DELIM '/'
#endif
char * path_join(const char *p1, const char *p2, char *dst, size_t len);