Lines 1-15
Link Here
|
1 |
Libconfig is a simple library for manipulating structured configuration |
1 |
Libconfig is a simple library for processing structured configuration |
2 |
files. The file format is more compact and more readable than XML. And |
2 |
files. This file format is more compact and more readable than XML. And |
3 |
unlike XML, it is type-aware, so it is not necessary to do string |
3 |
unlike XML, it is type-aware, so it is not necessary to do string |
4 |
parsing in application code. |
4 |
parsing in application code. |
5 |
|
5 |
|
6 |
Libconfig is very compact -- just 25K for the stripped C shared library |
6 |
Libconfig is very compact - a fraction of the size of the expat XML |
7 |
(one-fifth the size of the expat XML parser library) and 39K for the |
7 |
parser library. This makes it well-suited for memory-constrained systems |
8 |
stripped C++ shared library. This makes it well-suited for |
8 |
like handheld devices. |
9 |
memory-constrained systems like handheld devices. |
|
|
10 |
|
9 |
|
11 |
The library includes bindings for both the C and C++ languages. It works |
10 |
The library includes bindings for both the C and C++ languages. It works |
12 |
on POSIX-compliant UNIX systems (GNU/Linux, Mac OS X, Solaris, FreeBSD) |
11 |
on POSIX-compliant UNIX and UNIX-like systems (GNU/Linux, Mac OS X, |
13 |
and Windows (2000, XP and later). |
12 |
Solaris, FreeBSD), Android, and Windows (2000, XP and later). |
14 |
|
13 |
|
15 |
WWW: http://www.hyperrealm.com/libconfig/libconfig.html |
14 |
WWW: https://www.hyperrealm.com/libconfig/libconfig.html |