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:
@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user