1
1
mirror of https://github.com/theoludwig/libcproject.git synced 2025-05-21 23:21:15 +02:00

feat!: rename types string to string_t and byte to byte_t

This commit is contained in:
2023-06-25 15:03:04 +02:00
parent 8f3ee199e5
commit 1ded37b106
13 changed files with 100 additions and 100 deletions

View File

@ -1,9 +1,9 @@
#include "terminal.h"
string terminal_input() {
string_t terminal_input() {
char character;
size_t length = 1;
string string_value = malloc(length * sizeof(char));
string_t string_value = malloc(length * sizeof(char));
if (string_value == NULL) {
exit(EXIT_FAILURE);
}