mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-11-10 23:13:48 +01:00
12 lines
222 B
C
12 lines
222 B
C
/* See LICENSE file for license and copyright information */
|
|
|
|
#ifndef UTILS_H
|
|
#define UTILS_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
bool file_exists(const char* path);
|
|
const char* file_get_extension(const char* path);
|
|
|
|
#endif // UTILS_H
|