22 lines
No EOL
436 B
C
22 lines
No EOL
436 B
C
#ifndef IO_H
|
|
#define IO_H
|
|
|
|
#define _XOPEN_SOURCE
|
|
|
|
#include <errno.h>
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <sys/stat.h>
|
|
|
|
/**
|
|
* @brief reads a file at a path
|
|
*
|
|
* @param path the filepath
|
|
* @param size a pointer where the size of the result should be stored
|
|
* @return pointer to the raw data or NULL on errors
|
|
*/
|
|
uint8_t* read_file(const char* path, size_t* size);
|
|
|
|
#endif // IO_H
|