zenilib  0.5.3.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
types.h
Go to the documentation of this file.
1 #ifndef __SYS_TYPES_H__
2 #define __SYS_TYPES_H__ 1
3 
4 #include <MacTypes.h>
5 #include <alloca.h>
6 #include <string.h>
7 
8 typedef short int16_t;
9 typedef long int32_t;
10 typedef long long int64_t;
11 
12 #define vorbis_size32_t long
13 
14 
15 #if defined(__cplusplus)
16 extern "C" {
17 #endif
18 
19 #pragma options align=power
20 
21 char *strdup(const char *inStr);
22 
23 #pragma options align=reset
24 
25 #if defined(__cplusplus)
26 }
27 #endif
28 
29 #endif /* __SYS_TYPES_H__ */
long long int64_t
Definition: types.h:10
char * strdup(const char *inStr)
Definition: strdup.c:6
long int32_t
Definition: types.h:9
short int16_t
Definition: types.h:8