mirror of
https://github.com/theoludwig/libcproject.git
synced 2024-11-08 22:31:31 +01:00
19 lines
332 B
C
19 lines
332 B
C
#ifndef __CONVERT_TEST__
|
|
#define __CONVERT_TEST__
|
|
|
|
void convert_test();
|
|
|
|
void convert_character_to_string_test();
|
|
|
|
void convert_character_to_digit_test();
|
|
|
|
void convert_digit_to_character_test();
|
|
|
|
void convert_string_to_number_test();
|
|
|
|
void convert_number_to_string_test();
|
|
|
|
void convert_number_from_base_to_another_test();
|
|
|
|
#endif
|