GRASS Programmer's Manual 6.4.1(2011)
copy.c
Go to the documentation of this file.
00001 
00017 #include <grass/gis.h>
00018 #include <string.h>
00019 
00030 int G_copy(void *a, const void *b, int n)
00031 {
00032     memcpy(a, b, n);
00033     return 0;
00034 }
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines