EndeyshentLabs / shame.h

std replacement for C (WIP)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Shame.h

Std replacement for C programming language

Build-it

$ cmake -G Ninja -B build -DCMAKE_BUILD_TYPE=Release
$ cmake --build build --config Release

You will get the libshame.a static library in the project's root and build/ directory.

Usage

Just include the header and use it.

// program.c
#include "shame.h"

int main(void)
{
    ...
}

Compile your program and link it with libshame (assuming that you have path to libshame add to LD_LIBRARY_PATH).

$ cc -o program program.c -lshame

About

std replacement for C (WIP)

License:MIT License


Languages

Language:C 65.0%Language:CMake 25.4%Language:Makefile 9.5%