FreeCalypso > hg > ice1-trau-tester
comparison ater/read_file.h @ 20:5405c1573027
ater: implement file reading
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 24 Jun 2024 08:50:29 +0000 |
parents | |
children | db39e8855f3d |
comparison
equal
deleted
inserted
replaced
19:1e375472d5a5 | 20:5405c1573027 |
---|---|
1 /* | |
2 * This header file defines the interface to the function that reads | |
3 * binary files in our ad hoc format for TRAU testing. | |
4 */ | |
5 | |
6 #pragma once | |
7 | |
8 #include <stdint.h> | |
9 #include <stdbool.h> | |
10 | |
11 int read_binary_file(const char *filename, bool is_efr, uint8_t **bufret, | |
12 unsigned *size_ret); |