Query: strmtrim
OS: debian
Section: 3pub
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
STRMTRIM(3pub) C Programmer's Manual STRMTRIM(3pub)NAMEstrmtrim - replace multiple white spaces with single blanks within stringSYNOPSIS#include <publib.h> char *strmtrim(char *str);DESCRIPTIONstrmtrim will replace every run of whitespace characters (as defined by isspace(3)) with a single blank. It will not touch leading and trailing whitespace (use strltrim(3) and strrtrim(3) for those).RETURN VALUEstrmtrim will return the value of its argument.SEE ALSOpublib(3), strtrim(3), strltrim(3), strrtrim(3)AUTHORLars Wirzenius (lars.wirzenius@helsinki.fi) Publib C Programmer's Manual STRMTRIM(3pub)