00001 #include "gis.h" 00002 #include <string.h> 00003 00004 00016 char *G_store (s) char *s; 00017 { 00018 char *buf; 00019 00020 buf = G_malloc (strlen(s) + 1); 00021 strcpy (buf, s); 00022 return buf; 00023 }