blob: 892767e19ff3616da9f00aa6fca6d121e0cca152 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef __STALLOC_H__
#define __STALLOC_H__
struct st_alloc_t;
struct st_alloc_t * st_init();
void * st_alloc(struct st_alloc_t * s, size_t siz);
char * st_strdup(struct st_alloc_t * s, const char * src);
void st_destroy(struct st_alloc_t * s);
#endif
|