GRASS Programmer's Manual  6.5.svn(2012)-r51648
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Defines
struct_copy.c
Go to the documentation of this file.
00001 
00002 int struct_copy(char *To, char *From, int size)
00003 {
00004     for (; size; size--)
00005         *To++ = *From++;
00006 
00007     return 0;
00008 }