]> code.citadel.org Git - citadel.git/blobdiff - webcit/userlist.c
* Doxygen groups. Sorted the files into groups. so now we have a nice structure
[citadel.git] / webcit / userlist.c
index a0bced0ae006d921b739528f61a6a8c9cda57f06..a5a59103daffdab6cd967746dc99a239d8ae69ee 100644 (file)
@@ -1,19 +1,24 @@
 /*
  * $Id$
- *
- * Display a list of all accounts on a Citadel system.
- *
+ */
+/**
+ * \defgroup AccDisplay Display a list of all accounts on a Citadel system.
+ * \ingroup CitadelConfig
  */
 
+/*@{*/
 #include "webcit.h"
 
+/** 
+ * \brief structure to keep namelists in
+ */
 struct namelist {
-       struct namelist *next;
-       char name[32];
+       struct namelist *next; /**< next item of the linked list */
+       char name[32];         /**< name of the userentry */
 };
 
-/*
- * display the userlist
+/**
+ * \brief display the userlist
  */
 void userlist(void)
 {
@@ -99,8 +104,8 @@ DONE:        wDumpContent(1);
 }
 
 
-/*
- * Display (non confidential) information about a particular user
+/**
+ * \brief Display (non confidential) information about a particular user
  */
 void showuser(void)
 {
@@ -158,3 +163,6 @@ void showuser(void)
        wprintf("</td></tr></table></div>\n");
        wDumpContent(1);
 }
+
+
+/*@}*/