blob: fe0997525e01a5b3b748783a30f8325dd8f2776d (
plain) (
tree)
|
|
/*
* 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);
}
|