mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-11-14 07:13:46 +01:00
23 lines
410 B
C
23 lines
410 B
C
/* SPDX-License-Identifier: Zlib */
|
|
|
|
#ifndef CONFIG_H
|
|
#define CONFIG_H
|
|
|
|
#include "zathura.h"
|
|
|
|
/**
|
|
* This function loads the default values of the configuration
|
|
*
|
|
* @param zathura The zathura session
|
|
*/
|
|
void config_load_default(zathura_t* zathura);
|
|
|
|
/**
|
|
* Loads and evaluates a configuration file
|
|
*
|
|
* @param zathura The zathura session
|
|
*/
|
|
void config_load_files(zathura_t* zathura);
|
|
|
|
#endif // CONFIG_H
|