mirror of
https://github.com/theoludwig/libcproject.git
synced 2024-11-08 22:31:31 +01:00
26 lines
404 B
C
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
|