354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
|
return true;
}
void
cfw_map_iter(CFWMap *map, cfw_map_iter_t *iter)
{
iter->key = NULL;
iter->obj = NULL;
iter->_map = map;
iter->_pos = 0;
}
void
cfw_map_iter_next(cfw_map_iter_t *iter)
{
CFWMap *map = iter->_map;
|
<
<
>
>
|
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
|
return true;
}
void
cfw_map_iter(CFWMap *map, cfw_map_iter_t *iter)
{
iter->_map = map;
iter->_pos = 0;
cfw_map_iter_next(iter);
}
void
cfw_map_iter_next(cfw_map_iter_t *iter)
{
CFWMap *map = iter->_map;
|