converted comments to get caught by doxygen
[citadel.git] / webcit / autocompletion.c
index 6d68edd43f82415a666673f31c8675c8b36b4327..bd053db916b0d9d9b21ddb54596c7d108b4e7aa8 100644 (file)
@@ -1,13 +1,15 @@
 /*
  * $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];
@@ -42,3 +44,5 @@ void recp_autocomplete(char *partial) {
        wDumpContent(0);
 }
 
+
+/** @} */