Go to file
2025-11-18 22:37:27 +05:00
.vscode refactored code from tcpu 2025-07-18 22:07:30 +03:00
include/tlibc List_index fix 2025-11-18 22:37:27 +05:00
src fixed DateTime_get bugs and added FMT_DateTime 2025-11-18 16:00:50 +05:00
.gitignore refactored code from tcpu 2025-07-18 22:07:30 +03:00
project.config implemented DateTime struct 2025-11-13 05:11:35 +05:00
project.config.user.default updated to cbuild 2.3.0 2025-11-09 23:27:21 +05:00
README.md fix README 2025-11-15 15:23:13 +05:00
tlibc.config updated to cbuild 2.3.0 2025-11-09 23:27:21 +05:00

tlibc

C library with collections, strings, exceptions, io...

Build

  1. Clone the repository.
    git clone https://timerix.ddns.net/git/Timerix/tlibc.git
    
  2. Install cbuild.
  3. Build static library
    cd tlibc
    cbuild build_static_lib_dbg
    

Usage

Include tlibc/tlibc.h and put this code at the beginning of main().

    Deferral(32);
    try_fatal_void(tlibc_init());
    Defer(tlibc_deinit());