wok diff libhx/description.txt @ rev 25164

updated python-antlr (3.5.2 -> 3.5.3)
author Hans-G?nter Theisgen
date Fri Jul 01 10:50:21 2022 +0100 (23 months ago)
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/libhx/description.txt	Fri Jul 01 10:50:21 2022 +0100
     1.3 @@ -0,0 +1,12 @@
     1.4 +LibHX is a C library (with some C++ bindings available) that provides
     1.5 +data structures and functions commonly needed, such as maps, deques,
     1.6 +linked lists, string formatting and autoresizing, option and config
     1.7 +file parsing, type checking casts and more.
     1.8 +
     1.9 +LibHX aids in quickly writing up C and C++ data processing programs,
    1.10 +by consolidating tasks that often happen to be open-coded, such as
    1.11 +(simple) config file reading, option parsing, directory traversal,
    1.12 +and others, into a library.
    1.13 +The focus is on reducing the amount of time (and secondarily, the
    1.14 +amount of code) a developer has to spend for otherwise implementing
    1.15 +such.