comparison spp/src/const.h @ 6:ce08b0efa3fd draft

Uploaded
author zzhou
date Tue, 27 Nov 2012 16:11:40 -0500
parents
children
comparison
equal deleted inserted replaced
5:608a8e0eac56 6:ce08b0efa3fd
1 #ifndef NST_CONST_H
2 #define NST_CONST_H
3
4 #define MAX_ULL 0xffffffffffffffffull
5
6 typedef unsigned long long bit64_t;
7 typedef unsigned bit32_t;
8 typedef unsigned short bit16_t;
9 typedef unsigned char bit8_t;
10
11 extern bit8_t nst_nt4_table[];
12 extern bit8_t nst_nt16_table[];
13 extern char *nst_nt4_rev_table;
14 extern char *nst_nt16_rev_table;
15 extern bit8_t nst_nt16_nt4_table[];
16 extern int nst_nt16_count_table[];
17
18 #endif