feat(lsm): implement bt insert & search

This commit is contained in:
Jef Roosens 2023-10-13 10:29:00 +02:00
parent fd42b446a6
commit 13e42181a2
Signed by: Jef Roosens
GPG key ID: B75D4F293C7052DB
5 changed files with 2056 additions and 1 deletions

View file

@ -8,7 +8,8 @@
typedef enum lsm_error {
lsm_error_ok = 0,
lsm_error_failed_alloc = 1,
lsm_error_not_found = 2
lsm_error_not_found = 2,
lsm_error_already_present = 3
} lsm_error;
/**