💾 Archived View for gemini.rmf-dev.com › repo › Vaati › Vgmi › files › 8ee802b3873c8772eb961505abaf1… captured on 2024-02-05 at 09:57:37. Gemini links have been rewritten to link to archived content
-=-=-=-=-=-=-
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(void);
13 int history_save(void);
14 int history_add(const char *url, const char *title);
15 void history_free(void);
16 int history_clear(void);
17