File: pt_stdint.h

package info (click to toggle)
libpano13 2.9.14-3
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 6,480 kB
  • ctags: 2,765
  • sloc: ansic: 31,665; sh: 8,384; makefile: 254; perl: 202
file content (34 lines) | stat: -rw-r--r-- 706 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/* pt_stdint.h */
#ifndef PT_STDINT__H
#define PT_STDINT__H
# ifdef _MSC_VER  /* Microsoft Visual C++ */
typedef signed char             int8_t;
typedef short int               int16_t;
typedef int                     int32_t;
typedef __int64                 int64_t;
 
typedef unsigned char             uint8_t;
typedef unsigned short int        uint16_t;
typedef unsigned int              uint32_t;
/* no uint64_t */

#define INT32_MAX _I32_MAX

#  define vsnprintf _vsnprintf
#  define snprintf _snprintf

#ifdef _CPLUSPLUS
/* define if your compiler understands inline commands */
#define INLINE _inline
#else
#define INLINE
#endif


# else
#  include <stdint.h>
#define INLINE inline
# endif

#endif