15 lines
341 B
C
15 lines
341 B
C
#include "stralloc.h"
|
|
#include "byte.h"
|
|
#include "str.h"
|
|
|
|
extern int stralloc_diff(const stralloc* a,const stralloc* b) {
|
|
register size_t i;
|
|
register int j;
|
|
for (i=0;;++i) {
|
|
if (i==a->len) return i==b->len?0:-1; if (i==b->len) return 1;
|
|
if ((j=((unsigned char)(a->s[i])-(unsigned char)(b->s[i])))) return j;
|
|
}
|
|
return j;
|
|
}
|
|
|