mirror of
https://github.com/reactos/reactos.git
synced 2024-11-11 01:04:11 +00:00
26 lines
365 B
C
26 lines
365 B
C
|
/*
|
||
|
* $Id$
|
||
|
*/
|
||
|
|
||
|
#include <string.h>
|
||
|
|
||
|
|
||
|
void *
|
||
|
_memccpy (void *to, const void *from,int c,size_t count)
|
||
|
{
|
||
|
char t;
|
||
|
size_t i;
|
||
|
char *dst=(char*)to;
|
||
|
const char *src=(const char*)from;
|
||
|
|
||
|
for ( i = 0; i < count; i++ )
|
||
|
{
|
||
|
dst[i] = t = src[i];
|
||
|
if ( t == '\0' )
|
||
|
break;
|
||
|
if ( t == c )
|
||
|
return &dst[i+1];
|
||
|
}
|
||
|
return NULL; /* didn't copy c */
|
||
|
}
|