This commit is contained in:
2025-11-10 12:40:53 +05:00
parent d9daae8c5e
commit 3034e4d186
4 changed files with 9 additions and 8 deletions

View File

@@ -15,8 +15,9 @@ C library with collections, strings, exceptions, io...
```
## Usage
Put this code at the beginning of `main()`
Include `tlibc/tlibc.h` and put this code at the beginning of `main()`.
```
// tlibc/tlibc.h
try_fatal_void(tlibc_init());
Deferral(32);
try_fatal_void(tlibc_init());
Defer(tlibc_deinit());
```