OurOS
0.1
Operating System built by McGill Students
Loading...
Searching...
No Matches
stdint.h
1
#ifndef _STDINT_H
2
#define _STDINT_H
3
4
typedef
unsigned
char
uint8_t;
5
typedef
unsigned
short
uint16_t;
6
typedef
unsigned
int
uint32_t;
7
typedef
unsigned
long
uint64_t;
8
9
typedef
char
int8_t;
10
typedef
short
int16_t;
11
typedef
int
int32_t;
12
typedef
long
int64_t;
13
14
typedef
uint64_t size_t;
// for pointer arithmetic or array indexing
15
#endif
libc
stdint.h
Generated by
1.9.8