X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~yarrgweb/git?p=ypp-sc-tools.main.git;a=blobdiff_plain;f=pctb%2Fcommon.h;h=e4100f9d461bcfe216c061970016b4daa759936b;hp=47f898f06fecd31519d3bc0f717e0e024c1e41cf;hb=62c6511084ac851f374aaeb68b4d1d9f117690a1;hpb=8360f12a6a457b73ebb18dbeedbb15e6ed91318b diff --git a/pctb/common.h b/pctb/common.h index 47f898f..e4100f9 100644 --- a/pctb/common.h +++ b/pctb/common.h @@ -30,6 +30,7 @@ #define _GNU_SOURCE +#include #include #include #include @@ -38,6 +39,8 @@ #include #include #include +#include +#include #include #include @@ -72,6 +75,8 @@ typedef struct { /* both inclusive */ DF(pixmap) \ DF(struct) \ DF(ocr) \ + DF(rsync) \ + DF(structcolon) \ DF(callout) enum { @@ -93,6 +98,7 @@ void debug_flush(void); #define debug stderr const char *get_vardir(void); +const char *get_libdir(void); #define FMT(f,a) __attribute__((format(printf,f,a))) #define SCANFMT(f,a) __attribute__((format(scanf,f,a))) @@ -144,4 +150,18 @@ int dbfile_scanf(const char *fmt, ...) SCANFMT(1,2); int dbfile_vscanf(const char *fmt, va_list al) SCANFMT(1,0); +char *masprintf(const char *fmt, ...) FMT(1,2); + +#define EXECLP_HELPER(helper, ...) do{ \ + char *helper_path= masprintf("%s/%s",get_libdir(),helper); \ + execlp(helper_path,helper, __VA_ARGS__); \ + sysassert(errno==ENOENT); \ + fatal("Failed to find helper program %s.\n" \ + "(Are you in the correct directory?)", helper); \ + }while(0) + + +#define ARRAYSIZE(a) ((sizeof((a)) / sizeof((a)[0]))) + + #endif /*COMMON_H*/