forked from KolibriOS/kolibrios
kolibri-libc:
Move to folder with tcc. Part 1 git-svn-id: svn://kolibrios.org@8793 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
14
programs/develop/ktcc/trunk/libc.obj/source/string/memccpy.c
Normal file
14
programs/develop/ktcc/trunk/libc.obj/source/string/memccpy.c
Normal file
@@ -0,0 +1,14 @@
|
||||
#include <string.h>
|
||||
|
||||
void *memccpy(void *restrict dest, const void *restrict src, int c, size_t n)
|
||||
{
|
||||
unsigned char *d = dest;
|
||||
const unsigned char *s = src;
|
||||
|
||||
c = (unsigned char)c;
|
||||
for (; n && (*d=*s)!=c; n--, s++, d++);
|
||||
|
||||
tail:
|
||||
if (n) return d+1;
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user