mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-11-11 03:03:47 +01:00
23 lines
464 B
C
23 lines
464 B
C
/* See LICENSE file for license and copyright information */
|
|
|
|
#ifndef CONFIG_H
|
|
#define CONFIG_H
|
|
|
|
#define GLOBAL_RC "/etc/zathurarc"
|
|
#define ZATHURA_RC "zathurarc"
|
|
#define CONFIG_DIR "~/.config/zathura"
|
|
|
|
/**
|
|
* This function loads the default values of the configuration
|
|
*/
|
|
void config_load_default(void);
|
|
|
|
/**
|
|
* Loads and evaluates a configuration file
|
|
*
|
|
* @param path Path to the configuration file
|
|
*/
|
|
void config_load_file(char* path);
|
|
|
|
#endif // CONFIG_H
|