summaryrefslogtreecommitdiffstats
path: root/call/call.h
blob: 68bb5d69bfa4ef1243be34f247f09f1bb856ee35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef FALSE
#define	FALSE	0
#endif
#ifndef TRUE
#define	TRUE	1
#endif
extern int fd;
extern volatile 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 void date_unix2dos(time_t, unsigned short*, unsigned short*);
extern int yapp2unix(char *);
extern void unix2yapp(time_t unix_date, char *buffer);