blob: fbda589da53c8b5ad47ebfb1b8c9a654c5e5722d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef LIBUTIL_LOADFILE_H
#define LIBUTIL_LOADFILE_H
#include <stddef.h>
/* loadfile() returns the true size of the file, but will guarantee valid,
zero-padded memory out to this boundary. */
#define LOADFILE_ZERO_PAD 64
int loadfile(const char *, void **, size_t *);
#endif
|