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

2
main.c
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;