mirror of
https://github.com/theoludwig/libcproject.git
synced 2024-11-08 22:31:31 +01:00
19 lines
300 B
C
19 lines
300 B
C
#ifndef __CHARACTER_TEST__
|
|
#define __CHARACTER_TEST__
|
|
|
|
void character_test();
|
|
|
|
void character_append_test();
|
|
|
|
void character_append_at_test();
|
|
|
|
void character_to_upper_test();
|
|
|
|
void character_to_lower_test();
|
|
|
|
void character_get_is_digit_test();
|
|
|
|
void character_get_alphabet_position_test();
|
|
|
|
#endif
|