1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-10-18 06:33:35 -04:00
elinks/src/config/domain.h

38 lines
591 B
C
Raw Normal View History

2007-08-30 19:36:20 -04:00
#ifndef EL__CONFIG_DOMAIN_H
#define EL__CONFIG_DOMAIN_H
#include "config/options.h"
#include "util/lists.h"
#ifdef __cplusplus
extern "C" {
#endif
2007-08-30 19:36:20 -04:00
struct session;
struct domain_tree {
LIST_HEAD(struct domain_tree);
struct option *tree;
int len;
char name[1]; /* Must be at end of struct. */
2007-08-30 19:36:20 -04:00
};
extern LIST_OF(struct domain_tree) domain_trees;
struct option *get_domain_tree(char *);
2007-08-30 19:36:20 -04:00
2021-03-02 04:45:59 -05:00
struct option *get_domain_option_from_session(const char *,
2007-08-30 19:36:20 -04:00
struct session *);
void done_domain_trees(void);
#ifdef __cplusplus
}
#endif
2007-08-30 19:36:20 -04:00
#endif