1
1
mirror of https://github.com/theoludwig/libcproject.git synced 2024-09-19 21:35:53 +02:00
libcproject/test/convert_test.h

26 lines
436 B
C
Raw Normal View History

2023-01-05 19:28:05 +01:00
#ifndef __CONVERT_TEST__
#define __CONVERT_TEST__
2023-01-07 19:38:01 +01:00
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include "libcproject.h"
#include "test.h"
2023-01-05 19:28:05 +01:00
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