jtmm2/src/util.c

8 lines
66 B
C
Raw Normal View History

2021-12-17 00:20:39 +01:00
#include "util.h"
int
sign(int x)
{
return (x > 0) - (x < 0);
}