|
| iMatix home page | << | < | > | >> |
SFLVersion 2.10 |
#include "sflstr.h"
char *
trim (
char *strin)
Eats the whitespace's from the left and right side of a string. This function maintains a proper pointer head. Returns a pointer to head of the buffer. Submitted by Scott Beasley jscottb@infoave.com
{
ltrim (strin);
strcrop (strin);
return strin;
}
| | << | < | > | >> |
|