1
1
mirror of https://github.com/theoludwig/libcproject.git synced 2024-09-17 04:45:54 +02:00
libcproject/test/character_test.h
2023-01-07 19:41:04 +01:00

26 lines
404 B
C

#ifndef __CHARACTER_TEST__
#define __CHARACTER_TEST__
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include "libcproject.h"
#include "test.h"
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