00001 00002 int struct_copy(char *To, char *From, int size) 00003 { 00004 for (; size; size--) 00005 *To++ = *From++; 00006 00007 return 0; 00008 }