home *** CD-ROM | disk | FTP | other *** search
- /* some values constants for ansic.library */
- /* (c)Copyright 1992 Davide Pasetto */
-
- #ifndef _VALUES_H
- #define _VALUES_H
-
- #define BITSPERBYTE 8
- #define CHARBITS 8
- #define SHORTBITS 16
- #define INTBITS 32
- #define LONGBITS 32
- #define PTRBITS 32
- #define DOUBLEBITS 64
- #define FLOATBITS 32
- #define MAXLONG 0x7fffffff
- #define MINLONG 0x80000000
-
- #endif /* _VALUES_H */
-
-