blob: 9c206fbb2e6e94576781ec1719cbfa5bc5a7b4df (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef ECEX_UTIL_H
#define ECEX_UTIL_H
#include <stddef.h>
int ecex_file_exists(const char *path);
char *ecex_read_entire_file(const char *path, size_t *out_size);
char *ecex_strdup(const char *s);
#endif
|