1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
|
/* $NetBSD: skipto.c,v 1.6 2009/10/16 12:41:37 christos Exp $ */
/*
* Copyright (c) 1991 Carnegie Mellon University
* All Rights Reserved.
*
* Permission to use, copy, modify and distribute this software and its
* documentation is hereby granted, provided that both the copyright
* notice and this permission notice appear in all copies of the
* software, derivative works or modified versions, and any portions
* thereof, and that both notices appear in supporting documentation.
*
* CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
* CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
* ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
*
* Carnegie Mellon requests users of this software to return to
*
* Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
* School of Computer Science
* Carnegie Mellon University
* Pittsburgh PA 15213-3890
*
* any improvements or extensions that they make and grant Carnegie the rights
* to redistribute these changes.
*/
/************************************************************************
* skipover and skipto -- skip over characters in string
*
* Usage: p = skipto (string,charset);
* p = skipover (string,charset);
*
* char *p,*charset,*string;
*
* Skipto returns a pointer to the first character in string which
* is in the string charset; it "skips until" a character in charset.
* Skipover returns a pointer to the first character in string which
* is not in the string charset; it "skips over" characters in charset.
************************************************************************
* HISTORY
* 26-Jun-81 David Smith (drs) at Carnegie-Mellon University
* Skipover, skipto rewritten to avoid inner loop at expense of space.
*
* 20-Nov-79 Steven Shafer (sas) at Carnegie-Mellon University
* Skipover, skipto adapted for VAX from skip() and skipx() on the PDP-11
* (from Ken Greer). The names are more mnemonic.
*
* Sindex adapted for VAX from indexs() on the PDP-11 (thanx to Ralph
* Guggenheim). The name has changed to be more like the index()
* and rindex() functions from Bell Labs; the return value (pointer
* rather than integer) has changed partly for the same reason,
* and partly due to popular usage of this function.
*/
#include "supcdefs.h"
#include "supextern.h"
#ifndef __UNCONST
#define __UNCONST(a) ((void *)(unsigned long)(const void *)(a))
#endif
static char tab[256] = { 0 };
char *
skipto(const char *string, const char *charset)
{
const char *setp, *strp;
tab[0] = 1; /* Stop on a null, too. */
for (setp = charset; *setp; setp++)
tab[(unsigned char) *setp] = 1;
for (strp = string; tab[(unsigned char) *strp] == 0; strp++)
continue;
for (setp = charset; *setp; setp++)
tab[(unsigned char) *setp] = 0;
return __UNCONST(strp);
}
char *
skipover(const char *string, const char *charset)
{
const char *setp, *strp;
tab[0] = 0; /* Do not skip over nulls. */
for (setp = charset; *setp; setp++)
tab[(unsigned char) *setp] = 1;
for (strp = string; tab[(unsigned char) *strp]; strp++)
continue;
for (setp = charset; *setp; setp++)
tab[(unsigned char) *setp] = 0;
return __UNCONST(strp);
}
|