0 /*
1 * ISC License
2 * Copyright (c) 2023 RMF <rawmonk@firemail.cc>
3 */
4 #ifdef HISTORY_INTERNAL
5 struct history_entry {
6 char url[1024];
7 char title[1024];
8 struct history_entry *next;
9 };
10 extern struct history_entry *history;
11 #endif
12 void history_init();
13 int history_save();
14 int history_add(const char *url, const char *title);
15 void history_free();
16 int history_clear();
17