summaryrefslogtreecommitdiffstats
path: root/call/call.h
blob: b7723d7cd2b8fe76b23018859f921e1d96657184 (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 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( int, char *);