added missing basic functions to ase_str_t

This commit is contained in:
2008-09-25 02:06:56 +00:00
parent c1b3c8dfd8
commit dfc1e83f7c
3 changed files with 37 additions and 9 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: str.h 376 2008-09-24 07:18:50Z baconevi $
* $Id: str.h 379 2008-09-24 08:06:56Z baconevi $
*
* {License}
*/
@ -219,6 +219,19 @@ int ase_str_yield (
int new_capa /* new capacity in number of characters */
);
void* ase_str_getextension (
ase_str_t* str
);
ase_mmgr_t* ase_str_getmmgr (
ase_str_t* str
);
void ase_str_setmmgr (
ase_str_t* str,
ase_mmgr_t* mmgr
);
/*
* NAME: get the sizer
*