Implement SySetGetUsed();
The build was successful. Details

This commit is contained in:
Rafal Kupiec 2018-08-30 12:00:02 +02:00
parent b6161b0e4b
commit 041c65d63e
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4
1 changed files with 3 additions and 0 deletions

View File

@ -55,6 +55,9 @@ PH7_PRIVATE sxi32 SySetResetCursor(SySet *pSet) {
pSet->nCursor = 0;
return SXRET_OK;
}
PH7_PRIVATE sxi32 SySetGetUsed(SySet *pSet) {
return pSet->nUsed;
}
PH7_PRIVATE sxi32 SySetGetNextEntry(SySet *pSet, void **ppEntry) {
register unsigned char *zSrc;
if(pSet->nCursor >= pSet->nUsed) {