source: PSPA/madxPSPA/tools/numdiff/src/types.h @ 430

Last change on this file since 430 was 430, checked in by touze, 11 years ago

import madx-5.01.00

File size: 615 bytes
Line 
1#ifndef TYPES_H
2#define TYPES_H
3
4/*
5 o---------------------------------------------------------------------o
6 |
7 | Numdiff
8 |
9 | Copyright (c) 2012+ laurent.deniau@cern.ch
10 | Gnu General Public License
11 |
12 o---------------------------------------------------------------------o
13 
14   Purpose:
15     provides portable types and limits
16 
17 o---------------------------------------------------------------------o
18*/
19
20#include <limits.h>
21
22typedef unsigned char          bool;
23typedef unsigned int           uint;
24typedef unsigned long int      ulong;
25typedef unsigned long long int ullong;
26
27enum { false, true };
28
29#endif
Note: See TracBrowser for help on using the repository browser.