#include "io_eegtools.h"#include <stdlib.h>#include <stdint.h>Go to the source code of this file.
Functions | |
| Array * | array_from_file (FILE *in) |
| Read Array from file. | |
| void | array_to_file (FILE *out, const Array *a) |
| Write Array to disk. | |
| Array* array_from_file | ( | FILE * | in | ) |
Read Array from file.
The FILE* must be opened in read-binary "rb" mode.
The format of the array is described in File Format for Arrays .
| out | the file pointer to read from (opened read-binary "rb") |
Definition at line 37 of file io_eegtools.c.
| void array_to_file | ( | FILE * | out, | |
| const Array * | a | |||
| ) |
Write Array to disk.
The FILE* must be opened in write-binary "wb" mode.
The format of the array is described in rawfileformat .
| out | the file pointer to write to (opened write-binary "wb") | |
| a | the output array |
Definition at line 78 of file io_eegtools.c.
1.7.0