summaryrefslogtreecommitdiffstats
path: root/str_chr.c
diff options
context:
space:
mode:
authormanuel <manuel@mausz.at>2013-02-04 00:08:53 +0100
committermanuel <manuel@mausz.at>2013-02-04 00:08:53 +0100
commit69aec538b456402170dc723af417ba5c05389c32 (patch)
treee6f34c543f17c6392447ea337b2e2868212424d1 /str_chr.c
downloadqmail-69aec538b456402170dc723af417ba5c05389c32.tar.gz
qmail-69aec538b456402170dc723af417ba5c05389c32.tar.bz2
qmail-69aec538b456402170dc723af417ba5c05389c32.zip
qmail 1.03 import
Diffstat (limited to 'str_chr.c')
-rw-r--r--str_chr.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/str_chr.c b/str_chr.c
new file mode 100644
index 0000000..3691826
--- /dev/null
+++ b/str_chr.c
@@ -0,0 +1,19 @@
1#include "str.h"
2
3unsigned int str_chr(s,c)
4register char *s;
5int c;
6{
7 register char ch;
8 register char *t;
9
10 ch = c;
11 t = s;
12 for (;;) {
13 if (!*t) break; if (*t == ch) break; ++t;
14 if (!*t) break; if (*t == ch) break; ++t;
15 if (!*t) break; if (*t == ch) break; ++t;
16 if (!*t) break; if (*t == ch) break; ++t;
17 }
18 return t - s;
19}