blob: 1220dbc5c5790155656da874b8911696363f7803 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* ISC license. */
#include <stdint.h>
#include <errno.h>
#include <skalibs/genset.h>
int genset_iter_withcancel (genset *g, iter_func_ref f, iter_func_ref cancelf, void *stuff)
{
uint32_t n = genset_iter(g, f, stuff) ;
if (n < g->max)
{
int e = errno ;
genset_iter_nocancel(g, n, cancelf, stuff) ;
errno = e ;
return 0 ;
}
return 1 ;
}
|