mirror of
https://github.com/rkd77/elinks.git
synced 2025-01-03 14:57:44 -05:00
7ea7cacade
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.
19 lines
230 B
C
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
|