-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtaskutil.h
49 lines (38 loc) · 1.16 KB
/
taskutil.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/* $Id: taskutil.h,v 1.10 2006/03/06 19:55:10 mbse Exp $ */
#ifndef _TASKUTIL_H
#define _TASKUTIL_H
#define TRUE 1
#define FALSE 0
#define SS_BUFSIZE 1024 /* Socket buffersize */
#define MBSE_SS(x) (x)?(x):"(null)"
typedef struct _srv_auth {
struct _srv_auth *next;
char *hostname;
char *authcode;
} srv_auth;
/*
* Function prototypes
*/
void WriteError(const char *, ...);
void Syslogp(int, char *);
void Syslog(int, const char *, ...);
int ulog(char *, char *, char *, char *, char*);
char *xstrcpy(char *);
char *xstrcat(char *, char *);
void CreateSema(char *);
void TouchSema(char *);
void RemoveSema(char *);
int IsSema(char *);
int file_exist(char *, int);
int mkdirs(char *, mode_t);
int file_size(char *);
time_t file_time(char *);
char *ascfnode(faddr *, int);
void ascfnode_r(faddr *, int, char *);
void fido2str_r(fidoaddr, int, char *);
void Dos2Unix_r(char *, char *);
char *dayname(void);
void TaskInitFidonet(void);
int SearchFidonet(unsigned short);
char *printable(char *, int);
#endif