summaryrefslogtreecommitdiff
path: root/str_chr.c
diff options
context:
space:
mode:
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..9b467eb
--- /dev/null
+++ b/str_chr.c
@@ -0,0 +1,19 @@
1/* Public domain. */
2
3#include "str.h"
4
5unsigned int str_chr(register const char *s,int c)
6{
7 register char ch;
8 register const 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}