chore: initial commit

This commit is contained in:
Divlo
2023-01-05 19:28:05 +01:00
commit 0fa82c5772
46 changed files with 2537 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#include <stdio.h>
#include <stdlib.h>
#include "libcproject.h"
int main() {
char* string = "Hello, world!";
printf("%s\n", string);
printf("string_length = %ld\n", string_get_length(string));
return EXIT_SUCCESS;
}