Code

include ncursesw/ncurses.h if available
[ncmpc.git] / src / support.h
1 #ifndef SUPPORT_H
2 #define SUPPORT_H
4 #include <glib.h>
6 const char *strcasestr(const char *haystack, const char *needle);
8 typedef struct {
9         gsize offset;
10         GTime t; /* GTime is equivalent to time_t */
11 } scroll_state_t;
13 char *strscroll(char *str, char *separator, int width, scroll_state_t *st);
15 #endif