X-Git-Url: http://git.jankratochvil.net/?p=reactos.git;a=blobdiff_plain;f=lib%2Fmsvcrt%2Fstring%2Fstrrchr.c;fp=lib%2Fmsvcrt%2Fstring%2Fstrrchr.c;h=0000000000000000000000000000000000000000;hp=64be5cdf904e56e4f1ef8a0c6e8cd31c6cfd7f9e;hb=a3df8bf1429570e0bd6c6428f6ed80073578cf4b;hpb=7c0db166f81fbe8c8b913d7f26048e337d383605 diff --git a/lib/msvcrt/string/strrchr.c b/lib/msvcrt/string/strrchr.c deleted file mode 100644 index 64be5cd..0000000 --- a/lib/msvcrt/string/strrchr.c +++ /dev/null @@ -1,20 +0,0 @@ -/* Copyright (C) 1996 DJ Delorie, see COPYING.DJ for details */ -/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */ -#include - -char * -strrchr(const char *s, int c) -{ - char cc = c; - const char *sp=(char *)0; - while (*s) - { - if (*s == cc) - sp = s; - s++; - } - if (cc == 0) - sp = s; - return (char *)sp; -} -