Library /sys$common/syshlp/helplib.hlb — CRTL memmove Example
#include <string.h>
#include <stdio.h>
main()
{
char pdest[14] = "hello there";
char *psource = "you are there";
memmove(pdest, psource, 7);
printf("%s\n", pdest);
}
This example produces the following output:
you are there