mirror of /home/gitosis/repositories/libowfat.git
Mirror of :pserver:cvs@cvs.fefe.de:/cvs libowfat
https://www.fefe.de/libowfat/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
337 B
15 lines
337 B
#include "scan.h" |
|
#include <ctype.h> |
|
|
|
unsigned long scan_charsetnskip(const char *s,const char *charset,unsigned long limit) { |
|
register const char *t=s; |
|
register const char *u=t+limit; |
|
register const char* i; |
|
while (t<u) { |
|
for (i=charset; *i; ++i) |
|
if (*i==*t) break; |
|
if (*i!=*t) break; |
|
++t; |
|
} |
|
return t-s; |
|
}
|
|
|