store.c

Go to the documentation of this file.
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 }

Generated on Mon Jan 1 19:49:26 2007 for GRASS by  doxygen 1.5.1