blob: 395c1f8aab03e6f942d67fa304facd03b217e5c9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef INC_LIB_FILE_H
#define INC_LIB_FILE_H
#include <lib/bool.h>
#include <stddef.h>
// Write array to a file
bool_t write_array(char *output_file_name, void *array, size_t size);
#endif
|