1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-10-17 06:24:12 -04:00
elinks/src/config/domain.h
2021-03-02 10:45:59 +01:00

38 lines
591 B
C

#ifndef EL__CONFIG_DOMAIN_H
#define EL__CONFIG_DOMAIN_H
#include "config/options.h"
#include "util/lists.h"
#ifdef __cplusplus
extern "C" {
#endif
struct session;
struct domain_tree {
LIST_HEAD(struct domain_tree);
struct option *tree;
int len;
char name[1]; /* Must be at end of struct. */
};
extern LIST_OF(struct domain_tree) domain_trees;
struct option *get_domain_tree(char *);
struct option *get_domain_option_from_session(const char *,
struct session *);
void done_domain_trees(void);
#ifdef __cplusplus
}
#endif
#endif