blob: fe0997525e01a5b3b748783a30f8325dd8f2776d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/*
* my-component.c
*/
#include "hello_world.h"
void hello_world_greet(void)
{
hello_world_string_t my_string;
hello_world_string_set(&my_string, "Hello, world!");
hello_world_name(&my_string);
}
|