blob: 305ecbcf19d3fde468f3ea1cfe2d48a0aecbe97a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef SUPPORT_H
#define SUPPORT_H
#include <glib.h>
#ifdef HAVE_LIBGEN_H
#include <libgen.h>
#endif
char *remove_trailing_slash(char *path);
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
|