Go to file
2025-11-27 01:38:50 +05:00
.vscode refactored code from tcpu 2025-07-18 22:07:30 +03:00
include/tlibc added str_expand 2025-11-27 01:23:41 +05:00
src added file_readWholeText 2025-11-26 23:52:18 +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 updated README.md 2025-11-27 01:38:50 +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 this repository.

    git clone https://timerix.ddns.net/git/Timerix/tlibc.git
    
  2. Install cbuild. Select latest version compatible with the one in project.config. Example: For 2.3.0 download latest 2.3.x.

  3. Build static library

    cd tlibc
    cbuild build_static_lib_dbg
    

Usage

#include "tlibc/tlibc.h"

int main(){
    Deferral(32); // reserve memory for 32 defers
    try_fatal_void(tlibc_init());
    Defer(tlibc_deinit());

    Return 0; // call defers
}