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

 

eatstrpast

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

Synopsis

Eats chars past first occurrence of one of the chars contained in strCharsToEatPast.

Examples

       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)

{
   ASSERT (strBuff);
   ASSERT (strCharsToEatPast);

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

   return *strBuff;
}

| << | < | > | >> iMatix Copyright © 1996-2000 iMatix Corporation