Code

305ecbcf19d3fde468f3ea1cfe2d48a0aecbe97a
[ncmpc.git] / src / support.h
1 #ifndef SUPPORT_H
2 #define SUPPORT_H
4 #include <glib.h>
6 #ifdef HAVE_LIBGEN_H
7 #include <libgen.h>
8 #endif
10 char *remove_trailing_slash(char *path);
11 const char *strcasestr(const char *haystack, const char *needle);
13 typedef struct {
14         gsize offset;
15         GTime t; /* GTime is equivalent to time_t */
16 } scroll_state_t;
18 char *strscroll(char *str, char *separator, int width, scroll_state_t *st);
20 #endif