X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~yarrgweb/git?a=blobdiff_plain;f=pctb%2Fcommon.h;h=9d06fabf9a55c79b8a1878a649b8db03f6aaa083;hb=38e3d1bf1be975c8edd6a166106ab2729d15249c;hp=e4100f9d461bcfe216c061970016b4daa759936b;hpb=c2c039f07de178037bfbf12e4ee23c06f546de32;p=ypp-sc-tools.web-live.git diff --git a/pctb/common.h b/pctb/common.h index e4100f9..9d06fab 100644 --- a/pctb/common.h +++ b/pctb/common.h @@ -32,6 +32,7 @@ #include #include +#include #include #include #include @@ -40,9 +41,13 @@ #include #include #include -#include #include +#include + +#include +#include +#include #include #include @@ -131,7 +136,7 @@ void fatal(const char *fmt, ...) FMT(1,2) NORET; void sysassert_fail(const char *file, int line, const char *what) __attribute__((noreturn)); -void waitpid_check_exitstatus(pid_t pid, const char *what); +void waitpid_check_exitstatus(pid_t pid, const char *what, int sigpipeok); void *mmalloc(size_t sz); @@ -143,12 +148,18 @@ void dbfile_assertfail(const char *file, int line, const char *m) NORET; FILE *dbfile; void dbfile_getsline(char *lbuf, size_t lbufsz, const char *file, int line); -int dbfile_open(const char *tpath); /* 0: ENOENT; 1: worked */ +int dbfile_open(const char *tpath); /* 0: ENOENT; 1: worked */ +int dbfile_gzopen(const char *tpath); /* 0: ENOENT; 1: worked */ void dbfile_close(void); /* idempotent */ int dbfile_scanf(const char *fmt, ...) SCANFMT(1,2); int dbfile_vscanf(const char *fmt, va_list al) SCANFMT(1,0); +int gzopen(const char *zpath, int oflags, FILE **f_r, pid_t *pid_r, + const char *gziplevel /* 0 for read; may be 0, or "-1" etc. */); + /* returns errno value from open */ +void gzclose(FILE **f, pid_t *p, const char *what); + /* also OK with f==0, or p==-1 */ char *masprintf(const char *fmt, ...) FMT(1,2); @@ -162,6 +173,9 @@ char *masprintf(const char *fmt, ...) FMT(1,2); #define ARRAYSIZE(a) ((sizeof((a)) / sizeof((a)[0]))) +#define FILLZERO(obj) (memset(&(obj),0,sizeof((obj)))) +#define STRING2(x) #x +#define STRING(x) STRING2(x) #endif /*COMMON_H*/