| iMatix home page | << | < | > | >> |
![]() Version 1.91 |
#include "sflstr.h" char * ltrim ( char *string)
Deletes leading white spaces in string, and returns a pointer to the first non-blank character. If this is a null, the end of the string was reached.
{ ASSERT (string); while (isspace(*string)) deletechar(string,0); return string; }
| << | < | > | >> |
![]() |