KallistiOS git master
Independent SDK for the Sega Dreamcast
Loading...
Searching...
No Matches
ops.h
Go to the documentation of this file.
1/* KallistiOS ##version##
2
3 math/ops.h
4 Copyright (C) 2026 Andress Barajas
5
6*/
7
8#ifndef MATH_OPS_H
9#define MATH_OPS_H
10
11int op_clamp(int v, int lo, int hi);
12int op_sign(int v);
13
14#endif /* MATH_OPS_H */
int op_clamp(int v, int lo, int hi)
Definition ops.c:10
int op_sign(int v)
Definition ops.c:18