From 523649ed10f85bddcad574afa47abaf73d2b0a1e Mon Sep 17 00:00:00 2001 From: nodist Date: Tue, 30 Jun 2026 21:38:34 -0400 Subject: change to result and iteration unions --- docs/application/interface.md | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'docs/application') diff --git a/docs/application/interface.md b/docs/application/interface.md index e1c947a..887f7f7 100644 --- a/docs/application/interface.md +++ b/docs/application/interface.md @@ -43,9 +43,8 @@ typedef struct { typedef enum : uint8_t { KPL_STATUS_ERROR, - KPL_STATUS_VALUE, KPL_STATUS_NULL, - KPL_STATUS_DONE + KPL_STATUS_VALUE } kpl_status; typedef struct { @@ -55,11 +54,9 @@ typedef struct { kpl_result kpl_result_error(error *er); -kpl_result kpl_result_value(any value); - kpl_result kpl_result_null(void); -kpl_result kpl_result_done(void); +kpl_result kpl_result_value(any value); typdef struct { uint16_t slab_index, array_index; -- cgit v1.2.3