mirror of
https://github.com/Karaka-Management/cOMS.git
synced 2026-01-24 16:58:40 +00:00
25 lines
366 B
C
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
|