]> code.citadel.org Git - citadel.git/blobdiff - webcit/autocompletion.c
converted comments to get caught by doxygen
[citadel.git] / webcit / autocompletion.c
index 43904bdecc9645a3238c02299e81f0cff3c1ba8b..bd053db916b0d9d9b21ddb54596c7d108b4e7aa8 100644 (file)
@@ -1,19 +1,21 @@
 /*
  * $Id$
- *
- * ajax-powered autocompletion...
+ *//**
+ * \defgroup AjaxAutoCompletion ajax-powered autocompletion...
  */
 
+/*@{*/
 #include "webcit.h"
 
-/*
- * Recipient autocompletion results
+/**
+ * \brief Recipient autocompletion results
+ * \param partial the account to search for ??????
  */
 void recp_autocomplete(char *partial) {
        char buf[1024];
        char name[128];
 
-       output_headers(0, 0, 0, 0, 0, 0, 0);
+       output_headers(0, 0, 0, 0, 0, 0);
 
        wprintf("Content-type: text/html\r\n"
                "Server: %s\r\n"
@@ -42,3 +44,5 @@ void recp_autocomplete(char *partial) {
        wDumpContent(0);
 }
 
+
+/** @} */