zathura/utils.h
2010-11-29 14:58:56 +01:00

13 lines
279 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);
bool execute_command(char* const argv[], char** output);
#endif // UTILS_H