File: config.h

package info (click to toggle)
zathura 0.4.7-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,616 kB
  • sloc: ansic: 13,668; python: 49; xml: 48; perl: 41; makefile: 8
file content (22 lines) | stat: -rw-r--r-- 410 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* 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