Blame view

morfeusz/fsa/const.cpp 344 Bytes
Michał Lenart authored
1
2
3

#include "const.hpp"
Michał Lenart authored
4
5
namespace morfeusz {
Michał Lenart authored
6
extern const uint32_t MAGIC_NUMBER = 0x8fc2bc1b;
Michał Lenart authored
7
extern const uint8_t VERSION_NUM = 21;
Michał Lenart authored
8
9
10

extern const unsigned int VERSION_NUM_OFFSET = 4;
extern const unsigned int IMPLEMENTATION_NUM_OFFSET = 5;
Michał Lenart authored
11
12
extern const unsigned int FSA_DATA_SIZE_OFFSET = 6;
extern const unsigned int FSA_DATA_OFFSET = 10;
Michał Lenart authored
13
14

}