mirror of
https://github.com/theoludwig/libcproject.git
synced 2024-11-09 14:51:30 +01:00
12 lines
226 B
C
12 lines
226 B
C
|
#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;
|
||
|
}
|