| iMatix home page
| << | < | > | >>
SFL Logo SFL
Version 1.91

 

ltrim

#include "sflstr.h"
char *
ltrim (
    char *string)

Synopsis

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.

Source Code - (sflstr.c)

{
   ASSERT (string);

   while (isspace(*string))
       deletechar(string,0);

   return string;
}

| << | < | > | >> iMatix Copyright © 1996-98 iMatix