File: const.h

package info (click to toggle)
maq 0.7.1-10
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,500 kB
  • sloc: cpp: 5,025; ansic: 3,333; sh: 3,303; perl: 2,547; makefile: 31
file content (18 lines) | stat: -rw-r--r-- 412 bytes parent folder | download | duplicates (23)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef NST_CONST_H
#define NST_CONST_H

#define MAX_ULL 0xffffffffffffffffull

typedef unsigned long long bit64_t;
typedef unsigned bit32_t;
typedef unsigned short bit16_t;
typedef unsigned char bit8_t;

extern bit8_t nst_nt4_table[];
extern bit8_t nst_nt16_table[];
extern char *nst_nt4_rev_table;
extern char *nst_nt16_rev_table;
extern bit8_t nst_nt16_nt4_table[];
extern int nst_nt16_count_table[];

#endif