Remove whitespace at end of canonicalized header lines
[citadel.git] / ctdlsh / ctdlsh.h
index 722fa8395dd01afd14f42077ef8a348d40b8bc62..bbf03692c32b868e2d0184e8e1b00cfcbadf1653 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * main header file for ctdlsh
  *
- * Copyright (c) 2009-2013 by the citadel.org team
+ * Copyright (c) 2009-2023 by the citadel.org team
  * This program is open source software, cheerfully made available to
  * you under the terms of the GNU General Public License version 3.
  */
@@ -11,7 +11,7 @@
 #include <stdio.h>
 #include <signal.h>
 #include <sys/types.h>
-#include <sys/time.h>
+#include <time.h>
 #include <sys/socket.h>
 #include <sys/un.h>
 #include <string.h>
@@ -22,6 +22,7 @@
 #include <fcntl.h>
 #include <errno.h>
 #include <readline/readline.h>
+#include <libcitadel.h>
 
 /*
  * Set to the location of Citadel
@@ -46,3 +47,9 @@ int cmd_passwd(int, char *);
 int cmd_shutdown(int, char *);
 int cmd_who(int, char *);
 int cmd_export(int, char *);
+int cmd_config(int, char *);
+int cmd_mailq(int, char *);
+int sock_puts(int, char *);
+int sock_getln(int, char *, int);
+void sock_printf(int, const char *, ...);
+int uds_connectsock(char *);