upsie. some lines vanished.
authorWilfried Göesgens <willi@citadel.org>
Mon, 23 Jan 2006 13:44:05 +0000 (13:44 +0000)
committerWilfried Göesgens <willi@citadel.org>
Mon, 23 Jan 2006 13:44:05 +0000 (13:44 +0000)
removed kerningham-richie cisms.

webcit/ChangeLog
webcit/messages.c
webcit/tools.c
webcit/webcit.h
webcit/webserver.c

index b8d51be6156722a6c1179b44616572ec66458574..ff2b02f9d3314f66dd93043e66e83cc55882637c 100644 (file)
@@ -1,5 +1,8 @@
 $Id$
 
+Fri Jan 20 21:03:25 CET 2006 dothebart
+* finished doxygen style comments.
+
 Sun Jan 22 17:49:29 EST 2006 ajc
 * More work on the wiki view.  Don't try to use it yet.
 
index 98837f1779841b4d5ea8492d65e6c9eb854b823f..23a1e2ef6c3725c24c31ff6152ec7c5d76b2c8c5 100644 (file)
@@ -130,8 +130,7 @@ void utf8ify_rfc822_string(char *buf) {
  * target window in order to keep the BBS session in its own window.
  * \param buf the message buffer
  */
-void url(buf)
-char buf[];
+void url(char *buf)
 {
 
        int pos;
index ba9921107e7dddd3a25af814c37f748b000ec1c0..86e2d4f5ce6cc616d5127867cb745eec1e05e37e 100644 (file)
@@ -180,9 +180,7 @@ long extract_long(const char *source, int parmnum)
  * \param ch the char to search
  * \return the position inside of st
  */
-int haschar(st, ch)
-char st[];
-char ch;
+int haschar(char *st,char ch)
 {
        int a, b;
        b = 0;
index b844ef949c1388e0860fcfcc127c3f0ee35d0b65..df8e2be113e770db20eaca688801ad89e3e02a30 100644 (file)
@@ -371,6 +371,7 @@ struct wcsession {
        int num_cal;                              /**<  ??? todo */
 #endif                                                                                 
        struct wc_attachment *first_attachment;   /**<  ??? todo */
+       char last_chat_user[256];                 /**< ??? todo */
        char ImportantMessage[SIZ];               /**<   ??? todo */
        int ctdl_pid;                             /**< Session ID on the Citadel server */
        char httpauth_user[256];                      /**< only for GroupDAV sessions */
index 9d7829c3d6ca05fb62cdd720f51d89d4340c8a89..bebc06417621d7d0a3a1447918a7a086d758053a 100644 (file)
@@ -9,6 +9,7 @@
  */
 
 /*@{*/
+#include "webcit.h"
 #include "webserver.h"
 
 #ifndef HAVE_SNPRINTF