home *** CD-ROM | disk | FTP | other *** search
- /*
- * lib.h
- * Part of the !Virtual distribution
- * (c) bdb/nas/fo, 1992-3
- */
-
- void strcpy(char *p,char *q);
- int strcmp(char *p,char *q);
- void memcpy(char *p, char *q, int n);
- int strlen( char *p );
- int xtoi( char *p );
- int sizetoi( char *p );
- void *alloc(int size);
- void free(void *addr);
- #pragma -v1
- void printf(char *format,...);
- #pragma -v0
-
- struct Error { int num; char msg[4]; };
- void RealDoOff(struct WKSP *w);
- void Normal(struct WKSP *w);
- void Virtual(struct WKSP *w);
-