From 78488dc84afac1398e582ae6bbaf9606d07afa1e Mon Sep 17 00:00:00 2001 From: John Denker Date: Sat, 2 Jun 2012 18:38:28 -0700 Subject: checkpassword ... as downloaded --- checkpasswd/str_chr.c | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 checkpasswd/str_chr.c (limited to 'checkpasswd/str_chr.c') diff --git a/checkpasswd/str_chr.c b/checkpasswd/str_chr.c new file mode 100644 index 0000000..886d6b6 --- /dev/null +++ b/checkpasswd/str_chr.c @@ -0,0 +1,17 @@ +#include "str.h" + +unsigned int str_chr(register char *s,int c) +{ + register char ch; + register char *t; + + ch = c; + t = s; + for (;;) { + if (!*t) break; if (*t == ch) break; ++t; + if (!*t) break; if (*t == ch) break; ++t; + if (!*t) break; if (*t == ch) break; ++t; + if (!*t) break; if (*t == ch) break; ++t; + } + return t - s; +} -- cgit v1.2.3