equal
deleted
inserted
replaced
|
1 /* |
|
2 * Description: |
|
3 * The original NIST Statistical Test Suite code is placed in public domain. |
|
4 * (http://csrc.nist.gov/groups/ST/toolkit/rng/documentation_software.html) |
|
5 * |
|
6 * This software was developed at the National Institute of Standards and Technology by |
|
7 * employees of the Federal Government in the course of their official duties. Pursuant |
|
8 * to title 17 Section 105 of the United States Code this software is not subject to |
|
9 * copyright protection and is in the public domain. The NIST Statistical Test Suite is |
|
10 * an experimental system. NIST assumes no responsibility whatsoever for its use by other |
|
11 * parties, and makes no guarantees, expressed or implied, about its quality, reliability, |
|
12 * or any other characteristic. We would appreciate acknowledgment if the software is used. |
|
13 */ |
|
14 |
|
15 #if defined(__cplusplus) |
|
16 extern "C" { |
|
17 #endif |
|
18 |
|
19 #ifndef _CONFIG_H_ |
|
20 #define _CONFIG_H_ |
|
21 |
|
22 //#define WINDOWS32 |
|
23 //#define PROTOTYPES |
|
24 //#define LITTLE_ENDIAN |
|
25 //#define LOWHI |
|
26 |
|
27 /* |
|
28 * AUTO DEFINES (DON'T TOUCH!) |
|
29 */ |
|
30 |
|
31 #ifndef CSTRTD |
|
32 typedef char *CSTRTD; |
|
33 #endif |
|
34 #ifndef BSTRTD |
|
35 typedef unsigned char *BSTRTD; |
|
36 #endif |
|
37 |
|
38 #ifndef BYTE |
|
39 typedef unsigned char BYTE; |
|
40 #endif |
|
41 #ifndef UINT |
|
42 typedef unsigned int UINT; |
|
43 #endif |
|
44 #ifndef USHORT |
|
45 typedef unsigned short USHORT; |
|
46 #endif |
|
47 #ifndef ULONG |
|
48 typedef unsigned long ULONG; |
|
49 #endif |
|
50 #ifndef DIGIT |
|
51 typedef USHORT DIGIT; /* 16-bit word */ |
|
52 #endif |
|
53 #ifndef DBLWORD |
|
54 typedef ULONG DBLWORD; /* 32-bit word */ |
|
55 #endif |
|
56 |
|
57 #ifndef WORD64 |
|
58 typedef ULONG WORD64[2]; /* 64-bit word */ |
|
59 #endif |
|
60 |
|
61 #endif /* _CONFIG_H_ */ |
|
62 |
|
63 #if defined(__cplusplus) |
|
64 } |
|
65 #endif |