Loading [MathJax]/extensions/tex2jax.js
CS350 COS
COS
All Data Structures Files Functions Variables Typedefs Macros
types.h
Go to the documentation of this file.
1
2#ifndef __SYS_TYPES_H__
3#define __SYS_TYPES_H__
4
5typedef signed char int8_t;
6typedef signed short int16_t;
7typedef signed int int32_t;
8typedef signed long int64_t;
9
10typedef unsigned char uint8_t;
11typedef unsigned short uint16_t;
12typedef unsigned int uint32_t;
13typedef unsigned long uint64_t;
14
19
20typedef int64_t off_t;
22
24
27
29
30#define NULL ((void *)0)
31
32#endif /* __SYS_TYPES_H__ */
33
uint64_t time_t
Definition: types.h:25
int64_t off_t
Definition: types.h:20
uint64_t ino_t
Definition: types.h:23
int64_t intptr_t
Definition: types.h:15
uint64_t size_t
Definition: types.h:17
signed short int16_t
Definition: types.h:6
unsigned short uint16_t
Definition: types.h:11
unsigned int uint32_t
Definition: types.h:12
int64_t fpos_t
Definition: types.h:21
uint64_t suseconds_t
Definition: types.h:26
uint64_t uintptr_t
Definition: types.h:16
unsigned long uint64_t
Definition: types.h:13
int64_t ssize_t
Definition: types.h:18
signed int int32_t
Definition: types.h:7
unsigned char uint8_t
Definition: types.h:10
uint16_t pid_t
Definition: types.h:28
signed long int64_t
Definition: types.h:8
signed char int8_t
Definition: types.h:5