X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit%2Fautocompletion.c;h=bd053db916b0d9d9b21ddb54596c7d108b4e7aa8;hb=63f3ada05b99ec1994ab72cb0c8c0f44cd0f33c7;hp=6d68edd43f82415a666673f31c8675c8b36b4327;hpb=ed2f854f1a43b7242dbde9eeee16646b8ccd8855;p=citadel.git diff --git a/webcit/autocompletion.c b/webcit/autocompletion.c index 6d68edd43..bd053db91 100644 --- a/webcit/autocompletion.c +++ b/webcit/autocompletion.c @@ -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); } + +/** @} */