external database representation

This commit is contained in:
leitner
2002-03-24 03:08:04 +00:00
parent 8f9cd366f0
commit 13258a3f89
18 changed files with 1008 additions and 69 deletions

View File

@@ -3,7 +3,7 @@
/* behave like strcmp */
int matchstring(struct string* s,const char* c) {
int l,l1,i;
unsigned int l,l1,i;
if (!c) return -1;
l1=l=strlen(c);
if (s->l<l1) l1=s->l;