💾 Archived View for gemini.rmf-dev.com › repo › Vaati › Vgmi › files › b811de3086f4f492ef5c973063faf… captured on 2024-02-05 at 09:55:15. 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 int bookmark_load(void);

5 int bookmark_rewrite(void);

6 int bookmark_add(const char *url, const char *name);

7 int bookmark_remove(size_t id);

8

9 struct bookmark {

10 char url[MAX_URL];

11 char name[128];

12 };

13

14 extern struct bookmark *bookmarks;

15 extern size_t bookmark_length;

16