GRASS Programmer's Manual  6.4.2(2012)
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 }
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines