]> Pileus Git - ~andy/sfvlug/blob - c/src/util.c
Add C notes.
[~andy/sfvlug] / c / src / util.c
1 #include <stdio.h>
2 #include "util.h"
3
4 void hello(char *name)
5 {
6         printf("Hello, %s\n", name);
7 }