💾 Archived View for gemini.rmf-dev.com › repo › Vaati › Vgmi › files › e0910f4b6d3bf1cec5d840b68f116… captured on 2023-12-28 at 15:43:11. Gemini links have been rewritten to link to archived content

View Raw

More Information

-=-=-=-=-=-=-

Go Back

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