mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-11-11 02:33:47 +01:00
15 lines
364 B
C
15 lines
364 B
C
/* See LICENSE file for license and copyright information */
|
|
|
|
#ifndef UTILS_H
|
|
#define UTILS_H
|
|
|
|
#include <stdbool.h>
|
|
#include <gtk/gtk.h>
|
|
|
|
bool file_exists(const char* path);
|
|
const char* file_get_extension(const char* path);
|
|
bool execute_command(char* const argv[], char** output);
|
|
GtkWidget* page_blank(unsigned int width, unsigned int height);
|
|
|
|
#endif // UTILS_H
|