mirror of
https://git.sr.ht/~lattis/muon
synced 2026-01-29 19:04:20 +00:00
12 lines
183 B
C
12 lines
183 B
C
#ifndef MUON_ITERATOR_H
|
|
#define MUON_ITERATOR_H
|
|
enum iteration_result {
|
|
ir_err,
|
|
ir_cont,
|
|
ir_done,
|
|
};
|
|
|
|
typedef enum iteration_result (*iterator_func)(void *ctx, void *val);
|
|
#endif
|
|
|