diff options
Diffstat (limited to 'src/c2file.h')
| -rw-r--r-- | src/c2file.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/c2file.h b/src/c2file.h new file mode 100644 index 0000000..66c1e4a --- /dev/null +++ b/src/c2file.h @@ -0,0 +1,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; +}; |
