• Main Page
  • Related Pages
  • Data Structures
  • Files
  • File List
  • Globals

store.c

Go to the documentation of this file.
00001 
00017 #include <grass/gis.h>
00018 #include <string.h>
00019 
00020 
00032 char *G_store(const char *s)
00033 {
00034     char *buf;
00035 
00036     buf = G_malloc(strlen(s) + 1);
00037     strcpy(buf, s);
00038 
00039     return buf;
00040 }

Generated on Thu Dec 9 2010 20:46:05 for GRASS Programmer's Manual by  doxygen 1.7.2