Mercurial > ~dholland > hg > ag > index.cgi
comparison helpgen/htmlout.c @ 0:13d2b8934445
Import AnaGram (near-)release tree into Mercurial.
author | David A. Holland |
---|---|
date | Sat, 22 Dec 2007 17:52:45 -0500 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:13d2b8934445 |
---|---|
1 #include <stdio.h> | |
2 #include <stdlib.h> | |
3 #include <string.h> | |
4 | |
5 #include "topic.h" | |
6 #include "helpgen.h" | |
7 | |
8 void htmlout(const char *file, struct topic **topics, int ntopics) { | |
9 // XXX | |
10 (void)file; | |
11 (void)topics; | |
12 (void)ntopics; | |
13 fprintf(stderr, "Can't do html output yet\n"); | |
14 exit(1); | |
15 } |