terminology/src/bin/unit_tests.h

20 lines
440 B
C
Raw Normal View History

2020-05-23 15:05:29 -07:00
#ifndef _TY_UNIT_TESTS_H__
#define _TY_UNIT_TESTS_H__ 1
/* Unit tests */
typedef int (*tytest_func)(void);
/* list of tests */
int tytest_dummy(void);
2020-05-24 10:00:24 -07:00
int tytest_sb_skip(void);
int tytest_sb_trim(void);
int tytest_sb_gap(void);
int tytest_sb_steal(void);
int tytest_color_parse_hex(void);
int tytest_color_parse_2hex(void);
int tytest_color_parse_sharp(void);
int tytest_color_parse_uint8(void);
int tytest_color_parse_edc(void);
2020-05-23 15:05:29 -07:00
#endif