wok annotate libhx/description.txt @ rev 24974

Update some wget_url
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon May 02 11:23:24 2022 +0000 (2022-05-02)
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.