mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
20 lines
412 B
C
20 lines
412 B
C
|
|
#ifndef EL__BOOKMARKS_BACKEND_COMMON_H
|
|
#define EL__BOOKMARKS_BACKEND_COMMON_H
|
|
|
|
#include <stdio.h>
|
|
#include "util/lists.h"
|
|
#include "util/secsave.h"
|
|
|
|
struct bookmarks_backend {
|
|
/* Order matters here. --Zas. */
|
|
unsigned char *(*filename)(int);
|
|
void (*read)(FILE *);
|
|
void (*write)(struct secure_save_info *, struct list_head *);
|
|
};
|
|
|
|
void bookmarks_read(void);
|
|
void bookmarks_write(struct list_head *);
|
|
|
|
#endif
|