zathura/config.h
2014-01-06 16:02:58 +01:00

24 lines
481 B
C

/* See LICENSE file for license and copyright information */
#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
* @param path Path to the configuration file
*/
void config_load_files(zathura_t* zathura);
#endif // CONFIG_H