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