1 2 3 4 5 6 7 8 9
/* * libhello.c - The hello library */ #include <stdio.h> void hello(const char *person) { printf("Good morning %s\n", person); }