blob: da5ac5ed800457bd9740264bb884ab5e0a11ad92 (
plain) (
tree)
|
|
#ifdef HAVE_LIBGEN_H
#include <libgen.h>
#endif
#ifndef HAVE_BASENAME
char *basename(char *path);
#endif
#ifndef HAVE_STRCASESTR
char *strcasestr(const char *haystack, const char *needle);
#endif
char *remove_trailing_slash(char *path);
char *lowerstr(char *str);
int charset_init(void);
int charset_close(void);
char *utf8_to_locale(char *str);
|