chiark
/
gitweb
/
~mdw
/
qmail
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Minor fixing.
[qmail]
/
str_len.c
1
#include "str.h"
2
3
unsigned int str_len(s)
4
register char *s;
5
{
6
register char *t;
7
8
t = s;
9
for (;;) {
10
if (!*t) return t - s; ++t;
11
if (!*t) return t - s; ++t;
12
if (!*t) return t - s; ++t;
13
if (!*t) return t - s; ++t;
14
}
15
}