blob: 66c1e4a8ec4b0e6417e16e9ce50a8e5e81b82f35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*---------------------------------------------------------------------------*\
FILE........: c2file.h
AUTHOR......: Kevin Otte
DATE CREATED: 2017-08-01
Header structures for Codec2 file storage
\*---------------------------------------------------------------------------*/
const char c2_file_magic[3] = {0xc0, 0xde, 0xc2};
struct c2_header {
char magic[3];
char version_major;
char version_minor;
char mode;
char flags;
};
|