Chameleon

Chameleon Svn Source Tree

Root/branches/rewrite/i386/modules/klibc/strxspn.c

Source at commit 1129 created 12 years 11 months ago.
By meklort, Change options.o so that it reloads the system config as well. Also change it so that it uses that config for variables (NOTE: if the calue exists in chameleonConfig, it's used instead.
1/*
2 * strpbrk
3 */
4
5#include <limits.h>
6#include "libsaio.h"
7#include "strxspn.h"
8
9
10
11
12size_t __strxspn(const char *s, const char *map, int parity)
13{
14char matchmap[UCHAR_MAX + 1];
15size_t n = 0;
16
17/* Create bitmap */
18memset(matchmap, 0, sizeof matchmap);
19while (*map)
20matchmap[(unsigned char)*map++] = 1;
21
22/* Make sure the null character never matches */
23matchmap[0] = parity;
24
25/* Calculate span length */
26while (matchmap[(unsigned char)*s++] ^ parity)
27n++;
28
29return n;
30}
31

Archive Download this file

Revision: 1129