Skip site navigation (1)Skip section navigation (2)

FreeBSD Manual Pages

  
 
  

home | help
STRMTRIM(3)		     C Programmer's Manual		   STRMTRIM(3)

NAME
       strmtrim	 -  replace  multiple  white  spaces with single blanks	within
       string

SYNOPSIS
       #include	<publib.h>
       char *strmtrim(char *str);

DESCRIPTION
       strmtrim	will replace every run of whitespace characters	(as defined by
       isspace(3)) with	a single blank.	 It will not touch leading and	trail-
       ing whitespace (use strltrim(3) and strrtrim(3) for those).

RETURN VALUE
       strmtrim	will return the	value of its argument.

SEE ALSO
       publib(3), strtrim(3), strltrim(3), strrtrim(3)

AUTHOR
       Lars Wirzenius (lars.wirzenius@helsinki.fi)

Publib			     C Programmer's Manual		   STRMTRIM(3)

Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=strmtrim&sektion=3&manpath=FreeBSD+Ports+14.3.quarterly>

home | help