Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/preferences/src/lib/argp/mempcpy.c @ 6394

Last change on this file since 6394 was 6393, checked in by rennerc, 19 years ago

added libargp to orxonox

File size: 269 bytes
Line 
1/* strndup.c
2 *
3 */
4
5/* Written by Niels Möller <nisse@lysator.liu.se>
6 *
7 * This file is hereby placed in the public domain.
8 */
9
10#include <string.h>
11
12void *
13mempcpy (void *to, const void *from, size_t size)
14{
15  memcpy(to, from, size);
16  return (char *) to + size;
17}
18
Note: See TracBrowser for help on using the repository browser.