DEBSOURCES
Skip Quicknav
sources / buildstream / 1.6.9-3 / doc / examples / integration-commands / files / libhello / libhello.c
123456789
/* * libhello.c - The hello library */ #include <stdio.h> void hello(const char *person) { printf("Hello %s\n", person); }