:pserver:cvsanon@mok.lvcm.com:/CVS/ReactOS reactos
[reactos.git] / lib / crtdll / string / memccpy.c
1 #include <crtdll/string.h>
2
3
4 void *
5 _memccpy (void *to, const void *from,int c,size_t count)
6 {
7         memcpy(to,from,count);
8         return memchr(to,c,count);
9 }