]> mj.ucw.cz Git - libucw.git/blob - ucw/doc/index.txt
1f26e541da77378caadd1110757e635e7adc39ca
[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 - <<fastbuf:,Fastbufs>>
18 - <<basecode:,Base64 and Base224 encoding>>
19 - <<hash:,Hashing routines>>
20 - <<conf:,Configuration and command line parser>>
21 - <<mempool:,Memory pools>>
22 - <<eltpool:,Fixed-sized allocators>>
23 - <<mainloop:,Mainloop>>
24 - <<unaligned:,Unaligned data>>
25 - <<lists:,Link lists>>
26 - <<growbuf:,Growing buffers>>
27 - <<chartype:,Single-byte characters>>
28 - <<unicode:,Multi-byte characters>>
29 - <<prime:,Prime numbers>>
30 - <<binsearch:,Binary search>>
31
32 Other features
33 --------------
34 - <<configure:,Compile time configuration>>
35 - <<config:,Configuration file syntax>>
36 - <<docsys:,Documentation system>>
37 - <<generic:,Macro-generated generics>>
38
39 Yet undocumented modules
40 ------------------------
41 - Sorting
42   * `sorter/`
43 - Heaps
44   * `binheap.h`
45   * `binheap-node.h`
46   * `heap.h`
47 - Hash tables
48   * `hashtable.h`
49 - Trie
50   * `trie.h`
51 - Red-black trees
52   * `redblack.h`
53 - Bit manipulation
54   * `bitarray.h`
55   * `bitopts.h`
56   * `bitsig.h`
57 - String manipulation
58   * `kmp.h`
59   * `kmp-search.h`
60   * `regex.h`
61   * `stkstring.h`
62   * `string.h`
63   * `str-match.h`
64   * `wildmatch.h`
65 - File manipulation
66   * `asio.h`
67   * `lfs.h`
68   * `partmap.h`
69 - Address manipulation
70   * `url.h`
71   * `ipaccess.h`
72 - Prefetching of memory
73   * `prefetch.h`
74 - Compression
75   * `lizard.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.