Loading [MathJax]/extensions/tex2jax.js
CS350 COS
COS
Toggle main menu visibility
Main Page
Data Structures
Data Structures
Data Structure Index
Data Fields
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
Variables
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Files
File List
Globals
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
Variables
_
a
b
c
d
f
g
h
i
k
l
m
n
o
p
r
s
t
v
w
z
Typedefs
a
b
c
d
e
f
h
i
k
m
n
o
p
s
t
u
v
w
x
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
•
All
Data Structures
Files
Functions
Variables
Typedefs
Macros
Loading...
Searching...
No Matches
types.h
Go to the documentation of this file.
1
2
#ifndef __SYS_TYPES_H__
3
#define __SYS_TYPES_H__
4
5
typedef
signed
char
int8_t
;
6
typedef
signed
short
int16_t
;
7
typedef
signed
int
int32_t
;
8
typedef
signed
long
int64_t
;
9
10
typedef
unsigned
char
uint8_t
;
11
typedef
unsigned
short
uint16_t
;
12
typedef
unsigned
int
uint32_t
;
13
typedef
unsigned
long
uint64_t
;
14
15
typedef
int64_t
intptr_t
;
16
typedef
uint64_t
uintptr_t
;
17
typedef
uint64_t
size_t
;
18
typedef
int64_t
ssize_t
;
19
20
typedef
int64_t
off_t
;
21
typedef
int64_t
fpos_t
;
22
23
typedef
uint64_t
ino_t
;
24
25
typedef
uint64_t
time_t
;
26
typedef
uint64_t
suseconds_t
;
27
28
typedef
uint16_t
pid_t
;
29
30
#define NULL ((void *)0)
31
32
#endif
/* __SYS_TYPES_H__ */
33
time_t
uint64_t time_t
Definition:
types.h:25
off_t
int64_t off_t
Definition:
types.h:20
ino_t
uint64_t ino_t
Definition:
types.h:23
intptr_t
int64_t intptr_t
Definition:
types.h:15
size_t
uint64_t size_t
Definition:
types.h:17
int16_t
signed short int16_t
Definition:
types.h:6
uint16_t
unsigned short uint16_t
Definition:
types.h:11
uint32_t
unsigned int uint32_t
Definition:
types.h:12
fpos_t
int64_t fpos_t
Definition:
types.h:21
suseconds_t
uint64_t suseconds_t
Definition:
types.h:26
uintptr_t
uint64_t uintptr_t
Definition:
types.h:16
uint64_t
unsigned long uint64_t
Definition:
types.h:13
ssize_t
int64_t ssize_t
Definition:
types.h:18
int32_t
signed int int32_t
Definition:
types.h:7
uint8_t
unsigned char uint8_t
Definition:
types.h:10
pid_t
uint16_t pid_t
Definition:
types.h:28
int64_t
signed long int64_t
Definition:
types.h:8
int8_t
signed char int8_t
Definition:
types.h:5
sys
include
types.h
Generated by
1.9.6