Checking if a string is empty A string is empty if it is [[NULL]] or if the first character is [[\0]]. <<*>>= #include #define empty(s) (!s || !*s) EXPORTDEF(empty(s))