added tlibc error handling everywhere

This commit is contained in:
2025-11-26 16:42:28 +05:00
parent 048542d079
commit 2082d56c25
27 changed files with 374 additions and 308 deletions

15
src/tlibtoml.c Normal file
View File

@@ -0,0 +1,15 @@
#include "tlibtoml.h"
ErrorCodePage_define(TLIBTOML);
Result(void) tlibtoml_init(){
Deferral(8);
ErrorCodePage_register(TLIBTOML);
Return RESULT_VOID;
}
void tlibtoml_deinit(){
}