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

Uploaded
author zzhou
date Tue, 27 Nov 2012 16:11:40 -0500
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6
ce08b0efa3fd Uploaded
zzhou
parents:
diff changeset
1 #ifndef NST_CONST_H
ce08b0efa3fd Uploaded
zzhou
parents:
diff changeset
2 #define NST_CONST_H
ce08b0efa3fd Uploaded
zzhou
parents:
diff changeset
3
ce08b0efa3fd Uploaded
zzhou
parents:
diff changeset
4 #define MAX_ULL 0xffffffffffffffffull
ce08b0efa3fd Uploaded
zzhou
parents:
diff changeset
5
ce08b0efa3fd Uploaded
zzhou
parents:
diff changeset
6 typedef unsigned long long bit64_t;
ce08b0efa3fd Uploaded
zzhou
parents:
diff changeset
7 typedef unsigned bit32_t;
ce08b0efa3fd Uploaded
zzhou
parents:
diff changeset
8 typedef unsigned short bit16_t;
ce08b0efa3fd Uploaded
zzhou
parents:
diff changeset
9 typedef unsigned char bit8_t;
ce08b0efa3fd Uploaded
zzhou
parents:
diff changeset
10
ce08b0efa3fd Uploaded
zzhou
parents:
diff changeset
11 extern bit8_t nst_nt4_table[];
ce08b0efa3fd Uploaded
zzhou
parents:
diff changeset
12 extern bit8_t nst_nt16_table[];
ce08b0efa3fd Uploaded
zzhou
parents:
diff changeset
13 extern char *nst_nt4_rev_table;
ce08b0efa3fd Uploaded
zzhou
parents:
diff changeset
14 extern char *nst_nt16_rev_table;
ce08b0efa3fd Uploaded
zzhou
parents:
diff changeset
15 extern bit8_t nst_nt16_nt4_table[];
ce08b0efa3fd Uploaded
zzhou
parents:
diff changeset
16 extern int nst_nt16_count_table[];
ce08b0efa3fd Uploaded
zzhou
parents:
diff changeset
17
ce08b0efa3fd Uploaded
zzhou
parents:
diff changeset
18 #endif