Skip to content
Snippets Groups Projects
Commit b6788184 authored by Per Cederqvist's avatar Per Cederqvist
Browse files

Initial version.

parent 499add00
No related branches found
No related tags found
No related merge requests found
/*
* Malloc wrappers for the string package.
*
* These functions call smalloc and also counts
* how many allocated strings there are.
*/
extern void *
string_malloc(size_t size);
extern void
string_free(void * ptr);
extern void *
string_realloc (void * ptr,
size_t size);
extern void
dump_string_alloc_counts(FILE *stat_file);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment