e6f3399494f471bc60ba00af8bb4895afd7fcd7e
[reactos.git] / lib / ntdll / string / strrchr.c
1 /* Copyright (C) 1996 DJ Delorie, see COPYING.DJ for details */
2 /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
3 #include <string.h>
4 //#include <libc/unconst.h>
5
6 char *
7 strrchr(const char *s, int c)
8 {
9   char cc = c;
10   const char *sp=(char *)0;
11   while (*s)
12   {
13     if (*s == cc)
14       sp = s;
15     s++;
16   }
17   if (cc == 0)
18     sp = s;
19   return (char *)sp;
20 }
21