Magellan Linux

Annotation of /trunk/mkinitrd-magellan/klibc/usr/klibc/memrchr.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 532 - (hide annotations) (download)
Sat Sep 1 22:45:15 2007 UTC (16 years, 9 months ago) by niro
File MIME type: text/plain
File size: 268 byte(s)
-import if magellan mkinitrd; it is a fork of redhats mkinitrd-5.0.8 with all magellan patches and features; deprecates magellan-src/mkinitrd

1 niro 532 /*
2     * memrchr.c
3     */
4    
5     #include <stddef.h>
6     #include <string.h>
7    
8     void *memrchr(const void *s, int c, size_t n)
9     {
10     const unsigned char *sp = (const unsigned char *)s + n - 1;
11    
12     while (n--) {
13     if (*sp == (unsigned char)c)
14     return (void *)sp;
15     sp--;
16     }
17    
18     return NULL;
19     }