Subversion Repositories wimsdev

Rev

Rev 8100 | Rev 8160 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 8100 Rev 8122
Line 34... Line 34...
34
/* errors.c */
34
/* errors.c */
35
void (*error1) (char *msg);
35
void (*error1) (char *msg);
36
void (*error2) (char *msg);
36
void (*error2) (char *msg);
37
void (*error3) (char *msg);
37
void (*error3) (char *msg);
38
 
38
 
39
/* lines.c */
39
/* liblines.c */
40
char *int2str(int i);
40
char *int2str(int i);
41
void *xmalloc(size_t n);
41
void *xmalloc(size_t n);
42
int msleep(int ms); /* millisecond sleeper */
42
int msleep(int ms); /* millisecond sleeper */
43
void _tolinux(char *p);  /* dos/mac to unix/linux translation */
43
void _tolinux(char *p);  /* dos/mac to unix/linux translation */
44
void ovlstrcpy(char *dest, char *src); /* strcpy of possibly overlapping strings (64 bits problem)*/
44
void ovlstrcpy(char *dest, char *src); /* strcpy of possibly overlapping strings (64 bits problem)*/