Numworks Epsilon  1.4.1
Graphing Calculator Operating System
helpers.h
Go to the documentation of this file.
1 #ifndef LIBA_TEST_HELPERS_H
2 #define LIBA_TEST_HELPERS_H
3 
4 #define assert_signed(type) assert((type)-1 < 0)
5 #define assert_unsigned(type) assert((type)-1 >= 0)
6 
7 #endif