1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-28 01:35:32 +00:00
elinks/src/config/conf.h
Witold Filipczyk 3d96b0d7d7 Revert "Compile with C++."
This reverts commit 4f4df33638.
2019-04-21 12:27:40 +02:00

32 lines
743 B
C

#ifndef EL__CONFIG_CONF_H
#define EL__CONFIG_CONF_H
#include "terminal/terminal.h"
#include "util/string.h"
enum parse_error {
ERROR_NONE,
ERROR_COMMAND,
ERROR_PARSE,
ERROR_OPTION,
ERROR_VALUE,
ERROR_NOMEM,
};
void load_config(void);
#ifdef CONFIG_EXMODE
enum parse_error parse_config_exmode_command(unsigned char *cmd);
#endif
void parse_config_file(struct option *options, unsigned char *name,
unsigned char *file, struct string *mirror,
int is_system_conf);
int write_config(struct terminal *);
unsigned char *
create_config_string(unsigned char *prefix, unsigned char *name);
struct string *wrap_option_desc(struct string *out, const unsigned char *src,
const struct string *indent, int maxwidth);
#endif