renamed qse_xstr_t to qse_cstr_t

This commit is contained in:
2014-07-08 14:30:42 +00:00
parent 22444e298a
commit 36b20b4169
88 changed files with 454 additions and 454 deletions

View File

@ -86,7 +86,7 @@ void* str_getxtn (str_t* mbs)
return QSE_XTN (mbs);
}
int str_yield (str_t* str, xstr_t* buf, qse_size_t newcapa)
int str_yield (str_t* str, cstr_t* buf, qse_size_t newcapa)
{
char_t* tmp;
@ -114,7 +114,7 @@ int str_yield (str_t* str, xstr_t* buf, qse_size_t newcapa)
char_t* str_yieldptr (str_t* str, qse_size_t newcapa)
{
xstr_t mx;
cstr_t mx;
if (str_yield (str, &mx, newcapa) <= -1) return QSE_NULL;
return mx.ptr;
}