]> mj.ucw.cz Git - libucw.git/blob - ucw/doc/index.txt
Signals: Documentation
[libucw.git] / ucw / doc / index.txt
1 The UCW library
2 ===============
3
4 The UCW library aims to provide a set general purpose tools for programming
5 in the C language. It contains generic data structures (lists, trees, hash
6 tables etc.), fast memory allocators optimized for various usage patterns,
7 abstract I/O streams and optimized implementations of some common algorithms
8 (e.g., sorting of arrays and files).
9
10 Please note that this documentation is not yet complete. Many modules are
11 not described, so you might need to look into the source code.
12
13 You can see the index of <<def_index:,documented definitions>>.
14
15 For news and incompatible changes in this version, see the <<relnotes:,Release notes>>.
16
17 Modules
18 -------
19 - <<basics:,Basics>>
20 - <<log:,Logging>>
21 - <<fastbuf:,Fastbufs>>
22 - <<basecode:,Base64 and Base224 encoding>>
23 - <<hash:,Hashing routines>>
24 - <<conf:,Configuration and command line parser>>
25 - <<mempool:,Memory pools>>
26 - <<eltpool:,Fixed-sized allocators>>
27 - <<mainloop:,Mainloop>>
28 - <<unaligned:,Unaligned data>>
29 - <<lists:,Linked lists>>
30 - <<heap:,Binary heaps>>
31 - <<binheap:,Binomial heaps>>
32 - <<hashtable:,Hash tables>>
33 - <<growbuf:,Growing buffers>>
34 - <<chartype:,Single-byte characters>>
35 - <<unicode:,Multi-byte characters>>
36 - <<prime:,Prime numbers>>
37 - <<sort:,Sorting>>
38 - <<binsearch:,Binary search>>
39 - <<compress:,Compression>>
40 - <<trans:,Transactions and resource tracking>>
41 - <<string:,String operations>>
42 - <<time:,Time and timers>>
43 - <<daemon:,Daemon helpers>>
44 - <<signal:,Signal helpers>>
45
46 Other features
47 --------------
48 - <<configure:,Compile time configuration>>
49 - <<config:,Configuration file syntax>>
50 - <<docsys:,Documentation system>>
51 - <<generic:,Macro-generated generics>>
52
53 Yet undocumented modules
54 ------------------------
55 - Allocators
56   * `gary.h`
57 - Trie
58   * `trie.h`
59 - Red-black trees
60   * `redblack.h`
61 - Bit manipulation
62   * `bitarray.h`
63   * `bitops.h`
64   * `bitsig.h`
65 - String manipulation
66   * `kmp.h`
67   * `kmp-search.h`
68   * `regex.h`
69   * `stkstring.h`
70   * `strtonum.h`
71   * `wildmatch.h`
72 - File manipulation
73   * `asio.h`
74   * `io.h`
75   * `partmap.h`
76 - Address manipulation
77   * `url.h`
78   * `ipaccess.h`
79 - Threads
80   * `semaphore.h`
81   * `threads.h`
82   * `workqueue.h`
83 - Miscellaneous
84   * `sighandler.h`
85   * `process.h`
86
87 License
88 -------
89 The UCW library is copyrighted by its authors:
90
91 - Pavel Charvát <mailto:pchar\@ucw.cz[]>
92 - Martin Mareš <mailto:mj\@ucw.cz[]>
93 - Robert Špalek <mailto:robert\@ucw.cz[]>
94 - Michal Vaner <mailto:vorner\@ucw.cz[]>
95
96 It can be freely distributed and used according to the terms of
97 the GNU Lesser General Public License, either version 2 or any later
98 version.