File: common.h

package info (click to toggle)
countrycodes 1.0.3-4
  • links: PTS
  • area: main
  • in suites: woody
  • size: 140 kB
  • ctags: 47
  • sloc: ansic: 582; makefile: 89; sh: 12
file content (21 lines) | stat: -rw-r--r-- 384 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <time.h>
#include <ctype.h>
#include <string.h>
#include <errno.h>

#include "defines.h"

/* note: extern variables are explained where defined, just use grep. */
extern char *progname;

/* Functions Prototypes */

/* common.c */
char *cc_basename( char *name);
void cc_lowercase( char *str);
char *cc_hyp( void);