diff --git a/main.c b/main.c index 6fb1b3d..0a77557 100644 --- a/main.c +++ b/main.c @@ -1,4 +1,5 @@ #include +#include #include #include @@ -46,7 +47,12 @@ Post *Post_alloc() { int main(void) { Post *post = Post_alloc(); post->init(); + + strcpy(post->author, "Foo Bar"); + strcpy(post->body, "Lorem ipsum dolor sit amet"); post->printf(); + post->dealloc(); + return 0; }