10 lines
153 B
C
10 lines
153 B
C
|
#ifndef __KF_DEFS_H__
|
||
|
#define __KF_DEFS_H__
|
||
|
|
||
|
#ifdef __linux__
|
||
|
#include "linux-defs.h"
|
||
|
#endif
|
||
|
|
||
|
constexpr uint8 MAX_WORD_LEN = 12;
|
||
|
|
||
|
#endif // __KF_DEFS_H__
|