diff options
Diffstat (limited to 'support.h')
-rw-r--r-- | support.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/support.h b/support.h new file mode 100644 index 000000000..834dd8cda --- /dev/null +++ b/support.h @@ -0,0 +1,9 @@ + +#ifdef HAVE_LIBGEN_H +#include <libgen.h> +#else +char *basename(char *path); +#endif + +char *utf8(char *str); + |