DEBSOURCES
Skip Quicknav
sources / gccintro / 1.0-5 / hello_fn.c
12345678
#include <stdio.h> #include "hello.h" void hello (const char * name) { printf ("Hello, %s!\n", name); }