This commit is contained in:
taipanromania 2009-01-15 09:05:54 +00:00
parent fc21c1d0db
commit b8240d3d76

View File

@ -28,9 +28,7 @@
int ustrlen(unsigned char data[]) {
/* Local replacement for strlen() with unsigned char strings */
int i;
i = -1;
do { i++; } while (data[i] != '\0');
for (i=0;data[i];i++);
return i;
}