summaryrefslogtreecommitdiff
path: root/doc/examples/integration-commands/files/libhello/libhello.c
blob: 759b33926aaf068e0fd96b21ea22a09c72b1bd00 (plain)
1
2
3
4
5
6
7
8
9
/*
 * libhello.c - The hello library
 */
#include <stdio.h>

void hello(const char *person)
{
  printf("Hello %s\n", person);
}