aboutsummaryrefslogtreecommitdiffstats
path: root/src/support.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/support.h')
-rw-r--r--src/support.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/support.h b/src/support.h
index 2b79e3aef..fce9aac28 100644
--- a/src/support.h
+++ b/src/support.h
@@ -16,6 +16,15 @@ char *remove_trailing_slash(char *path);
char *lowerstr(char *str);
char *strcasestr(const char *haystack, const char *needle);
+typedef struct
+{
+ int offset;
+ time_t t;
+
+} scroll_state_t;
+
+char *strscroll(char *str, char *separator, int width, scroll_state_t *st);
+
void charset_init(gboolean disable);
char *utf8_to_locale(char *str);
char *locale_to_utf8(char *str);