cOMS/Types.h
Dennis Eichhorn b68c8702e0 general fixes
2024-04-19 02:08:38 +00:00

25 lines
366 B
C

/**
* Karaka
*
* @package Stdlib
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://jingga.app
*/
#ifndef TYPES_H
#define TYPES_H
#include <stdint.h>
#include <float.h>
typedef int8_t int8;
typedef int16_t int16;
typedef int32_t int32;
typedef int64_t int64;
typedef float f32;
typedef double f64;
#endif