-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSTD_TYPES.h
More file actions
28 lines (20 loc) · 1.11 KB
/
STD_TYPES.h
File metadata and controls
28 lines (20 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*****************************************************************************************************
* Author: Abdelrahman Gamal Abdelwanies Mohamed *
* Created: 16/10/2023 *
* Project: School Mangement System *
* File: STD_TYPES.h *
*****************************************************************************************************/
#ifndef STD_TYPES_H_
#define STD_TYPES_H_
typedef signed char s8; //1byte=8bit
typedef unsigned char u8; //1byte=8bit
typedef signed short int s16; //2bytes=16bit
typedef unsigned short int u16; //2bytes=16bit
typedef signed long int s32; //4bytes=32bit
typedef unsigned long int u32; //4bytes=32bit
typedef signed long long int s64; //8bytes=64bit
typedef unsigned long long int u64; //8bytes=64bit
typedef float f32; //4bytes=32bit
typedef double f64; //8bytes=64bit
typedef long double f128; //16bytes=128bit
#endif