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

This commit is contained in:
2023-06-25 20:08:58 +02:00
parent 8f3ee199e5
commit 1ded37b106
13 changed files with 100 additions and 100 deletions
+1 -1
View File
@@ -4,7 +4,7 @@
#include "libcproject.h"
int main() {
string string_value = "Hello, world!";
string_t string_value = "Hello, world!";
printf("%s\n", string_value);
printf("string_length = %ld\n", string_get_length(string_value));
return EXIT_SUCCESS;