gra-projekt/Implementierung/lib/io.h

19 lines
363 B
C
Raw Normal View History

2022-06-29 10:58:49 +02:00
#ifndef IO_H
#define IO_H
#include <errno.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/stat.h>
2022-06-29 11:08:31 +02:00
/**
* @brief reads a file at a path
2022-06-29 11:12:35 +02:00
*
2022-06-29 11:08:31 +02:00
* @param path the filepath
* @param size a pointer where the size of the result should be stored
* @return the raw data
*/
2022-06-29 19:03:12 +02:00
uint8_t* read_file(const char* path, size_t* size);
2022-06-29 11:08:31 +02:00
#endif // IO_H