diff options
| author | nodist <kevin.comas.git@gmail.com> | 2026-06-30 21:38:34 -0400 |
|---|---|---|
| committer | nodist <kevin.comas.git@gmail.com> | 2026-06-30 21:38:34 -0400 |
| commit | 523649ed10f85bddcad574afa47abaf73d2b0a1e (patch) | |
| tree | 6ee76cf7abcc9c2fa62b8c6b51c53483d5b222d5 /docs/application/interface.md | |
| parent | dd9713497bfc9e27f9b1ff3181d34ee241f05ec8 (diff) | |
change to result and iteration unions
Diffstat (limited to 'docs/application/interface.md')
| -rw-r--r-- | docs/application/interface.md | 7 |
1 files changed, 2 insertions, 5 deletions
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; |
