1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-06 23:44:43 -04:00
elinks/src/config/home.h
Witold Filipczyk 7ea7cacade [.config] Read/write configuration from ~/.config/elinks . Refs #199
Note, configs and other files from ~/.elinks/ are not moved
to ~/.config/elinks/ automatically. You must do it yourself.

ELINKS_CONFDIR and HOME_ETC also are no longer supported.
2022-12-26 17:48:55 +01:00

19 lines
230 B
C

#ifndef EL__CONFIG_HOME_H
#define EL__CONFIG_HOME_H
#ifdef __cplusplus
extern "C" {
#endif
extern int first_use;
void init_home(void);
void done_home(void);
char *get_xdg_config_home(void);
#ifdef __cplusplus
}
#endif
#endif