"SfR Fresh" - the SfR Freeware/Shareware Archive

Member "ocre-0.029/ocre/src/base.h" of archive ocre_v0_029.tgz:


As a special service "SfR Fresh" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file. That can be also achieved for any archive member file by clicking within an archive contents listing on the first character of the file(path) respectively on the according byte size field.
    1 
    2 #ifndef _BASE_H
    3 #define _BASE_H
    4 
    5 #ifndef TRUE
    6 #define TRUE    1
    7 #define FALSE   0
    8 #endif
    9 
   10 #ifndef Boolean
   11 #define Boolean int
   12 #endif
   13 
   14 #define max(A,B) ((A) > (B) ? (A) : (B))
   15 #define min(A,B) ((A) > (B) ? (B) : (A))
   16 #define abs(A) ((A) > 0 ? (A) : (-(A)))
   17 
   18 typedef void * tpgen;
   19 
   20 #endif /* _BASE_H */
   21