2001-02-02 17:54:47 +00:00
|
|
|
#include "stralloc.h"
|
|
|
|
#include "byte.h"
|
|
|
|
#include "str.h"
|
|
|
|
|
2004-11-25 21:29:35 +00:00
|
|
|
extern int stralloc_starts(stralloc *sa,const unsigned char *in) {
|
|
|
|
register unsigned long int len=str_len(in);
|
2001-02-02 17:54:47 +00:00
|
|
|
return (len<=sa->len && !byte_diff(sa->s,len,in));
|
|
|
|
}
|
|
|
|
|