1/*=============================================================================
 2 |
 3 | NAME
 4 |  
 5 |     dataTypes.hpp
 6 |
 7 | DESCRIPTION
 8 |  
 9 |     Data types for parity bits and syndrome bits for CRC generation and checking.
10 |
11 | AUTHOR
12 |
13 |      Sean O'Connor
14 |    
15 | NOTES/METHOD
16 |  
17 |     Create as a console application under Windows NT.
18 |
19 | LEGAL
20 |
21 |     CRCDemo Version 2.1 - A Program for generating and checking CRC codes.
22 |     Copyright (C) 1999-2025 by Sean Erik O'Connor.  All Rights Reserved.
23 |
24 |     This program is free software: you can redistribute it and/or modify
25 |     it under the terms of the GNU General Public License as published by
26 |     the Free Software Foundation, either version 3 of the License, or
27 |     (at your option) any later version.
28 |
29 |     This program is distributed in the hope that it will be useful,
30 |     but WITHOUT ANY WARRANTY; without even the implied warranty of
31 |     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
32 |     GNU General Public License for more details.
33 |
34 |     You should have received a copy of the GNU General Public License
35 |     along with this program.  If not, see <http://www.gnu.org/licenses/>.
36 |     
37 |     The author's address is seanerikoconnor!AT!gmail!DOT!com
38 |     with !DOT! replaced by . and the !AT! replaced by @
39 |
40 +============================================================================*/
41
42#ifndef __dataTypes_h__
43#define __dataTypes_h__
44
45// Private data types.
46//
47typedef unsigned int syndrome_t ;
48
49#endif // __dataTypes_h__