blob: fccf95fb1ffcb87ce4b3e383a8d59ab3eb121fb3 (
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;
};
|