Karg v0.2.0
The kernel of CargOS
Loading...
Searching...
No Matches
math.h
Go to the documentation of this file.
1#pragma once
2
3#define max(a, b) ((a) > (b) ? (a) : (b))
4#define min(a, b) ((a) < (b) ? (a) : (b))