wok annotate 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
rev   line source
Hans-G?nter@24798 1 LibHX is a C library (with some C++ bindings available) that provides
Hans-G?nter@24798 2 data structures and functions commonly needed, such as maps, deques,
Hans-G?nter@24798 3 linked lists, string formatting and autoresizing, option and config
Hans-G?nter@24798 4 file parsing, type checking casts and more.
Hans-G?nter@24798 5
Hans-G?nter@24798 6 LibHX aids in quickly writing up C and C++ data processing programs,
Hans-G?nter@24798 7 by consolidating tasks that often happen to be open-coded, such as
Hans-G?nter@24798 8 (simple) config file reading, option parsing, directory traversal,
Hans-G?nter@24798 9 and others, into a library.
Hans-G?nter@24798 10 The focus is on reducing the amount of time (and secondarily, the
Hans-G?nter@24798 11 amount of code) a developer has to spend for otherwise implementing
Hans-G?nter@24798 12 such.