]> mj.ucw.cz Git - libucw.git/blob - ucw/doc/index.txt
Resource pools documented
[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 Modules
16 -------
17 - <<basics:,Basics>>
18 - <<log:,Logging>>
19 - <<fastbuf:,Fastbufs>>
20 - <<basecode:,Base64 and Base224 encoding>>
21 - <<hash:,Hashing routines>>
22 - <<conf:,Configuration and command line parser>>
23 - <<mempool:,Memory pools>>
24 - <<eltpool:,Fixed-sized allocators>>
25 - <<mainloop:,Mainloop>>
26 - <<unaligned:,Unaligned data>>
27 - <<lists:,Link lists>>
28 - <<heap:,Binary heaps>>
29 - <<binheap:,Binomial heaps>>
30 - <<hashtable:,Hash tables>>
31 - <<growbuf:,Growing buffers>>
32 - <<chartype:,Single-byte characters>>
33 - <<unicode:,Multi-byte characters>>
34 - <<prime:,Prime numbers>>
35 - <<sort:,Sorting>>
36 - <<binsearch:,Binary search>>
37 - <<compress:,Compression>>
38 - <<trans:,Transactions and resource tracking>>
39
40 Other features
41 --------------
42 - <<configure:,Compile time configuration>>
43 - <<config:,Configuration file syntax>>
44 - <<docsys:,Documentation system>>
45 - <<generic:,Macro-generated generics>>
46 - <<relnotes:,Release notes>>
47
48 Yet undocumented modules
49 ------------------------
50 - Trie
51   * `trie.h`
52 - Red-black trees
53   * `redblack.h`
54 - Bit manipulation
55   * `bitarray.h`
56   * `bitopts.h`
57   * `bitsig.h`
58 - String manipulation
59   * `kmp.h`
60   * `kmp-search.h`
61   * `regex.h`
62   * `stkstring.h`
63   * `string.h`
64   * `str-match.h`
65   * `strtonum.h`
66   * `wildmatch.h`
67 - File manipulation
68   * `asio.h`
69   * `lfs.h`
70   * `partmap.h`
71 - Address manipulation
72   * `url.h`
73   * `ipaccess.h`
74 - Prefetching of memory
75   * `prefetch.h`
76 - Caches
77   * `qache.h`
78 - Threads
79   * `semaphore.h`
80   * `threads.h`
81   * `workqueue.h`
82 - Profiling support
83   * `profile.h`
84
85 License
86 -------
87 The UCW library is copyrighted by its authors:
88
89 - Pavel Charvát <mailto:pchar\@ucw.cz[]>
90 - Martin Mareš <mailto:mj\@ucw.cz[]>
91 - Robert Špalek <mailto:robert\@ucw.cz[]>
92 - Michal Vaner <mailto:vorner\@ucw.cz[]>
93
94 It can be freely distributed and used according to the terms of
95 the GNU Lesser General Public License.