chiark
/
gitweb
/
~mdw
/
qmail
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
[PATCH] qmqpc: Read servers from the command line.
[qmail]
/
stralloc_arts.c
1
#include "byte.h"
2
#include "str.h"
3
#include "stralloc.h"
4
5
int stralloc_starts(sa,s)
6
stralloc *sa;
7
char *s;
8
{
9
int len;
10
len = str_len(s);
11
return (sa->len >= len) && byte_equal(s,len,sa->s);
12
}