1 
2 #include <stdio.h>
3 #include <stdlib.h>
4 #include <unistd.h>
5 #include <time.h>
6 #include <ctype.h>
7 #include <string.h>
8 #include <errno.h>
9 
10 #include "defines.h"
11 
12 /* note: extern variables are explained where defined, just use grep. */
13 extern char *progname;
14 
15 /* Functions Prototypes */
16 
17 /* common.c */
18 char *cc_basename( char *name);
19 void cc_lowercase( char *str);
20 char *cc_hyp( void);
21 
22