53     s = 
malloc((
unsigned int)n);
 
   77     s = calloc((
unsigned int)n, (
unsigned int)m);
 
   98         s = 
malloc((
unsigned int)n);
 
  100         s = realloc(s, (
unsigned int)n);
 
void * db_calloc(int n, int m)
Allocate memory.
 
char * db_store(const char *s)
Make a copy of string buffer.
 
void db_free(void *s)
Free allocated memory.
 
void * db_malloc(int n)
Allocate memory.
 
void * db_realloc(void *s, int n)
Reallocate memory.
 
Main header of GRASS DataBase Management Interface.
 
void db_memory_error(void)
Report memory error.