chiark / gitweb /
disobedience can stop/start a background rtp player now
[disorder] / lib / charset.h
index 369d2b9b7da0b298a6c380e8921c37779aaf51d5..f77c58378be2002cc262e0cd85bb8a605d84d479 100644 (file)
@@ -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;