• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

config/H15-Jun-2013-14,33011,056

doc/H03-May-2022-186149

lang/perl/H15-Jun-2013-1,7951,337

src/H15-Jun-2013-3,7813,199

tests/H07-May-2022-5,7604,559

.gitignoreH A D15-Jun-2013175 2216

AUTHORSH A D15-Jun-201384 43

COPYINGH A D15-Jun-201334.3 KiB675553

ChangeLogH A D15-Jun-20133.1 KiB7160

INSTALLH A D15-Jun-201315.4 KiB371289

LICENSEH A D15-Jun-20131.1 KiB2217

Makefile.amH A D15-Jun-201352 32

Makefile.inH A D15-Jun-201323.5 KiB761669

NEWSH A D15-Jun-2013185 73

READMEH A D15-Jun-20131.4 KiB5739

README.mdH A D15-Jun-201378 72

aclocal.m4H A D15-Jun-2013335.4 KiB9,5328,589

bootstrapH A D15-Jun-2013214 126

configureH A D15-Jun-2013394.1 KiB13,56111,304

configure.acH A D15-Jun-2013443 2016

libtoolH A D15-Jun-2013289.8 KiB10,1267,470

README

1tpl: fast, easy serialization in C
2==============================================================================
3
4Documentation for tpl is available in the doc/ directory or at:
5
6    http://troydhanson.github.com/tpl
7
8You can build tpl as a library, like so:
9
10    ./configure
11    make
12    make install
13
14This installs libtpl.so and libtpl.a into a standard system library directory.
15You can customize the install directory using configure's "--prefix" option:
16
17    ./configure --prefix=/some/directory
18
19For other options accepted by configure, run "./configure --help".
20
21NON-LIBRARY OPTION
22------------------
23Alternatively, if you don't want to muck around with libraries, you can simply
24copy these two files into your own C project and build them with your program:
25
26    src/tpl.h
27    src/tpl.c
28
29WINDOWS
30-------
31You can build tpl as a DLL under Visual Studio 2008. Or you can use MinGW or
32Cygwin.
33
34SELF-TEST SUITE
35---------------
36The automated self-test can be run by doing:
37
38    cd tests
39    make
40
41LICENSE
42-------
43The BSD license applies to this software. The text is in the LICENSE file.
44
45CREDITS
46-------
47Many people have contributed to tpl, both bits of code and ideas. Rather than
48listing them all here, at risk of omitting anyone- I just wish to say thank
49you. Some particular features are noted with contributors' names in the
50ChangeLog.
51
52Feel free to send me questions, comments or bug reports.
53
54Troy D. Hanson, March 17 2013
55tdh@tkhanson.net
56
57

README.md

1
2Documentation for tpl is available at:
3
4http://troydhanson.github.com/tpl/
5
6
7