mirror of
https://github.com/djhackersdev/bemanitools.git
synced 2026-09-15 11:55:10 -05:00
10 lines
172 B
C
10 lines
172 B
C
#ifndef UTIL_MATH_H
|
|
#define UTIL_MATH_H
|
|
|
|
#include <stdint.h>
|
|
|
|
int16_t get_wrapped_delta_s16(int16_t val, int16_t last, int16_t bound);
|
|
int16_t sign_s16(int16_t x);
|
|
|
|
#endif
|