@@ -58,6 +58,13 @@
(link)->next = (following); \
BLOCK_END
static void
transform_str (char *s, int (*tolower) (int c))
{
for (; *s; s++)
*s = tolower (*s);
}
split_str (const char *s, char delimiter, struct str_vector *out)
The note is not visible to the blocked user.