You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
295 B
16 lines
295 B
7 years ago
|
#ifndef _SMEM_H
|
||
|
#define _SMEM_H
|
||
|
|
||
|
#define SM_ZERO_MEMORY
|
||
|
|
||
|
#define sm_context _en_sm_context
|
||
|
|
||
|
typedef struct __en_sm_context *sm_context;
|
||
|
|
||
|
sm_context _en_sm_init();
|
||
|
void _en_sm_free(sm_context s);
|
||
|
void* _en_smalloc(sm_context s, size_t size);
|
||
|
int _en_sm_clear(sm_context s);
|
||
|
|
||
|
#endif /* _SMEM_H */
|