mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-11-11 00:43:45 +01:00
16 lines
297 B
C
16 lines
297 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);
|
|
|
|
#endif // CONFIG_H
|