now the generated "data" file matches the old one

strlen -> str_len
This commit is contained in:
leitner
2004-02-05 00:08:49 +00:00
parent 723522bcaa
commit ee32353df2
13 changed files with 32 additions and 28 deletions

View File

@@ -1,7 +1,8 @@
#include <string.h>
#include "bstr.h"
#include "uint32.h"
#include "str.h"
int bstrlen(const char* a) {
if (*a) return strlen(a); else return uint32_read(a+1);
if (*a) return str_len(a); else return uint32_read(a+1);
}