X-Git-Url: https://git.distorted.org.uk/~mdw/disorder/blobdiff_plain/763d5e6ad88ef3ba1cd1d7742d060e4f1e54c6b8..659d87e8636edf319139b8c4d293132e2cd14441:/lib/charset.h?ds=sidebyside diff --git a/lib/charset.h b/lib/charset.h index 369d2b9..f77c583 100644 --- a/lib/charset.h +++ b/lib/charset.h @@ -48,7 +48,12 @@ char *any2any(const char *from/*encoding or 0*/, * that iconv knows. If FROM and TO are both 0 then ANY is returned * unchanged. */ - +/** @brief Insist that @p s is not null + * @param s Pointer to check + * @return @p s + * + * Terminates the process if @p s is a null pointer. + */ static inline char *nullcheck(char *s) { if(!s) exitfn(1); /* assume an error already reported */ return s;