blob: 5a7115d4deabba4258cb5f170eb63c8779db318c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef FALSE
#define FALSE 0
#endif
#ifndef TRUE
#define TRUE 1
#endif
extern int fd;
extern int interrupted;
extern int paclen;
/* In call.c */
extern void convert_crlf(char *, int);
extern void convert_lfcr(char *, int);
/* In yapp.c */
extern void cmd_yapp(char *, int);
/* In dostime.c */
extern int yapp2unix(char *);
extern void unix2yapp( int, char *);
|