Xtandard stuff...
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
Ognjen Milan Robovic ac3db4408c Created compilation script and updated some stuff... 7 месяцев назад
LICENSE Doing stuff... 9 месяцев назад
README.md Created compilation script and updated some stuff... 7 месяцев назад
compile.sh Created compilation script and updated some stuff... 7 месяцев назад
install.sh Created compilation script and updated some stuff... 7 месяцев назад
xtandard.c Created compilation script and updated some stuff... 7 месяцев назад
xtandard.h Created compilation script and updated some stuff... 7 месяцев назад

README.md

xtandard

xtandard -- Xolatile-style “header-only” library for commonly used functions.

  • Purpose of this library is to replace < stdio, stdlib, unistd, fcntl, ctype, string... .h >. (:
  • Intended usage is writing simple programs, which can fit it one source file, often only in ‘main’ function.
  • Of course, it uses some global variables, be careful with naming your variables, and avoid C-style “namespaces”, they're bad.
  • Everything related to my libraries is clean of all warning options on Clang, GCC and Valgrind.

Compile:

$ sh compile.sh

Install:

$ sudo sh install.sh

Xolatile-style “header-only” library is my take on ‘stb’ header-only libraries. There are a lot of ideas that came from Ada, which is my second language. Main idea behind them is to avoid standard library and macros in programs. Also, I like to avoid C-style “namespaces” and bad function names...

This is the core library behind my other libraries such as xector, xatrix, xyntax, xurses, xender, xame...