From 8ccd1cdd5fb5cd1882587743839fcd10886b6727 Mon Sep 17 00:00:00 2001 From: leitner Date: Wed, 28 Dec 2005 16:48:17 +0000 Subject: [PATCH] typo in comment --- byte/byte_chr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/byte/byte_chr.c b/byte/byte_chr.c index 833abcd..c7c4c8b 100644 --- a/byte/byte_chr.c +++ b/byte/byte_chr.c @@ -1,7 +1,7 @@ #include "byte.h" /* byte_chr returns the smallest integer i between 0 and len-1 - * inclusive such that one[i] equals needle, or len it not found. */ + * inclusive such that one[i] equals needle, or len if not found. */ unsigned long byte_chr(const void* haystack, unsigned long len, char needle) { register char c=needle; register const char* s=haystack;