Sat, 04 Nov 2000 21:29:33 +0100
trunk: changeset 31
fix
0 | 1 | |
2 | ||
3 | libtu | |
4 | ||
5 | Copyright (c) Tuomo Valkonen 1999-2000. | |
6 | ||
7 | <tuomov@cc.tut.fi> | |
8 | ||
9 | ||
10 | ||
11 | Libtu is a small utility library for programs written in C. Naturally, | |
12 | libtu is free software under the "Artistic License". See the file | |
13 | LICENSE for details. | |
14 | ||
3 | 15 | To build the library, first edit system.mk to customize it for your |
0 | 16 | system if necessary. Then 'make depend && make'. |
17 | To install it run 'make install' (perhaps as root depending on | |
18 | where you are installing it). | |
19 | ||
20 | If you want to use it in your programs, you may try to figure out how | |
21 | by reading the header files (include/*.h) and test programs (tester*.c). | |
22 | Or you could try urging me to write some sort of a manual. | |
25 | 23 | |
24 | --- | |
25 | ||
26 | Libtu needs the functions asprintf and vasprintf. These do not | |
27 | exist on most platforms. One implementation is available at | |
28 | <http://www.ijs.si/software/snprintf/>, which is used by default | |
29 | and is supposed to be found at ../snprintf_2.2. To use the | |
30 | system's versions, if available, modify system.mk. | |
31 |