blob: 01cf30136bf29dec79ed095fc7baa9c004fd56d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
README
`cforum' is a CGI-based web forum software written in C. It uses
SQLite as its database. It is designed to be a simple, fast and
reliable alternative to software like phpBB. Written in portable
C89, it can be run on practically any UNIX system.
It is also rather small:
wc -l *.c *.h */*.t */*.lex
101 cforum.c
267 ctl.c
268 db.c
10 err.c
144 query.c
6 ctl.h
40 db.h
0 err.h
16 query.h
12 site.h
3 t/err.t
1 t/foot.t
29 t/front.t
14 t/head.t
34 t/newuser.t
28 t/post.t
12 t/user.t
95 mktpl/mktpl.lex
1080 total
|