blob: 95bde46913338d65f307a810b6409b584af90cc3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef SUPPORT_H
#define SUPPORT_H
#include <glib.h>
const char *strcasestr(const char *haystack, const char *needle);
typedef struct {
gsize offset;
GTime t; /* GTime is equivalent to time_t */
} scroll_state_t;
char *strscroll(char *str, char *separator, int width, scroll_state_t *st);
#endif
|