libowfat/scan/scan_whitenskip.c
2006-11-07 17:56:05 +00:00

10 lines
203 B
C

#include "scan.h"
#include <ctype.h>
size_t scan_whitenskip(const char *s,size_t limit) {
register const char *t=s;
register const char *u=t+limit;
while (t<u && isspace(*t)) ++t;
return t-s;
}