]> code.citadel.org Git - citadel.git/blobdiff - webcit-ng/server/webcit.h
Changed "supplied_xxx" to "xxx_in" when we modify.
[citadel.git] / webcit-ng / server / webcit.h
index e422849a4321c3e962253339d34220e5c2f6cea7..f3ce6d356ee5489b07543f7b594bf398d87aa39e 100644 (file)
@@ -146,7 +146,6 @@ enum {
 // Everything below here is generated with this command:
 // cproto -f2 *.c 2>/dev/null |sed 's/^\/\*/\n\/\//g' | sed 's/\ \*\/$//g'
 
-
 // admin_functions.c
 void try_login(struct http_transaction *, struct ctdlsession *);
 void logout(struct http_transaction *, struct ctdlsession *);
@@ -210,6 +209,9 @@ void perform_one_http_transaction(struct client_handle *);
 char *header_val(struct http_transaction *, char *);
 char *get_url_param(struct http_transaction *, char *);
 
+// ical_ctdl_is_overlap.c
+int ical_ctdl_is_overlap(struct icaltimetype, struct icaltimetype, struct icaltimetype, struct icaltimetype);
+
 // ical_dezonify.c
 icaltimezone *get_default_icaltimezone(void);
 void ical_dezonify_backend(icalcomponent *, icalcomponent *, icalproperty *);
@@ -303,5 +305,3 @@ char *http_datestring(time_t);
 void spawn_another_worker_thread(int *);
 void worker_entry(int *);
 int webserver(char *, int, int);
-
-