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

 

eatstrpast

#include "sflstr.h"
char *
eatstrpast (
    char **strBuff,
    char *strCharsToEatPast)

Synopsis

Eats chars past first occurrence of one of the chars contained in strCharsToEatPast. char strBuff[] = { " , 456, 789" }; eatstrpast (&strBuff, ","); On return here strBuff would be: " 456, 789". Returns a pointer to head of the input buffer. Submitted by Scott Beasley jscottb@infoave.com

Source Code - (sflstr.c)

{
   ltrim (*strBuff);
   while (**strBuff && strchr (strCharsToEatPast, **strBuff))
       deletechar (*strBuff, 0);

   return *strBuff;
}

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