* Set up framework for "notes" view, and added a skeleton function for
[citadel.git] / webcit / notes.c
1 /*
2  * $Id$
3  *
4  * Functions which handle "sticky notes"
5  *
6  */
7
8 #include <ctype.h>
9 #include <stdlib.h>
10 #include <unistd.h>
11 #include <stdio.h>
12 #include <fcntl.h>
13 #include <signal.h>
14 #include <sys/types.h>
15 #include <sys/wait.h>
16 #include <sys/socket.h>
17 #include <limits.h>
18 #include <string.h>
19 #include <pwd.h>
20 #include <errno.h>
21 #include <stdarg.h>
22 #include <time.h>
23 #include "webcit.h"
24 #include "webserver.h"
25
26 void display_note(long msgnum) {
27         wprintf("<TABLE border=2><TR><TD>\n");
28         wprintf("FIXME note #%ld\n", msgnum);
29         wprintf("</TD></TR></TABLE\n");
30 }