GRASS GIS 8 Programmer's Manual 8.3.2(2024)-exported
Loading...
Searching...
No Matches
struct_copy.c
Go to the documentation of this file.
1int struct_copy(char *To, char *From, int size)
2{
3 for (; size; size--)
4 *To++ = *From++;
5
6 return 0;
7}
int struct_copy(char *To, char *From, int size)
Definition struct_copy.c:1