Function Heading: dummy example
} /* previous_function() */
/* Scan a line scan_line()
** -----------
** On entry,
** l points to the zero-terminated line to be scanned
** On exit,
** *l The line has null termintors inserted after each
** word found.
** return value is the number of words found, or -1 if error.
** lines This global value is incremented.
*/
PRIVATE int scan_line ARGS1(const char *, l);
{
/* Code here */
} /* scan_line() */
Tim BL