refactor: include only in header files

This commit is contained in:
Divlo
2023-01-07 19:41:04 +01:00
parent 886038a0ac
commit bd85171e2d
41 changed files with 101 additions and 131 deletions
-8
View File
@@ -1,13 +1,5 @@
#include "convert.h"
#include <stdio.h>
#include <stdlib.h>
#include "character.h"
#include "mathematics.h"
#include "stdbool.h"
#include "string.h"
char* convert_character_to_string(const char character) {
char* string = malloc(sizeof(char*) * 2);
if (string == NULL) {