added quite a few sample programs

This commit is contained in:
2015-03-11 06:12:48 +00:00
parent 3793785e7c
commit cb62c4ecd1
41 changed files with 1592 additions and 164 deletions

View File

@ -135,9 +135,10 @@ void* qse_fma_alloc (qse_fma_t* fma, qse_size_t size)
if ((blk = fma->freeblk) == QSE_NULL)
{
if (add_chunk (fma) == QSE_NULL) return QSE_NULL;
if (add_chunk(fma) == QSE_NULL) return QSE_NULL;
blk = fma->freeblk;
}
fma->freeblk = fma->freeblk->next;
return blk;
}