mirror of
https://git.sr.ht/~lattis/muon
synced 2026-01-30 19:34:50 +00:00
17 lines
293 B
C
17 lines
293 B
C
/*
|
|
* SPDX-FileCopyrightText: Stone Tickle <lattis@mochiro.moe>
|
|
* SPDX-License-Identifier: GPL-3.0-only
|
|
*/
|
|
|
|
#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
|
|
|