X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?p=userv.git;a=blobdiff_plain;f=both.h;h=dc4c68a76109e6a5caaa5c3e442ed20f4f61e311;hp=084405db4a461f74a40446b080b4f2df597e50d9;hb=af5c97dd0b7e37e1fb3ad1f7ac81fa31a48be7f8;hpb=b6c671fd90134d458ad4722ec3a99742bced1a34;ds=sidebyside diff --git a/both.h b/both.h index 084405d..dc4c68a 100644 --- a/both.h +++ b/both.h @@ -23,7 +23,19 @@ #ifndef BOTH_H #define BOTH_H +/* provided by both.c */ + +void *xmalloc(size_t s); +void *xrealloc(void *p, size_t s); +char *xstrsave(const char *s); + int working_getc(FILE *file); size_t working_fread(void *ptr, size_t sz, FILE *file); +/* used by both.c, so must be present */ + +void syscallerror(const char *what) NONRETURNING; + +#define ISCHAR(iswotsit,ch) (iswotsit((unsigned char)(ch))) /*Feh!*/ + #endif