calendar_functions.c: added skeleton
[citadel.git] / webcit-ng / server / calendar_functions.c
1 // Calendar functions
2 //
3 // Copyright (c) 1996-2023 by the citadel.org team
4 //
5 // This program is open source software.  Use, duplication, or
6 // disclosure are subject to the GNU General Public License v3.
7
8 #include "webcit.h"
9
10
11 // Client is requesting a message list
12 void json_msglist(struct http_transaction *h, struct ctdlsession *c, char *range) {
13
14         do_404(h);
15 }