wok diff 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
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/libhx/description.txt	Mon May 02 11:23:24 2022 +0000
     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.