aboutsummaryrefslogtreecommitdiff
path: root/src/Groups.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/Groups.c')
-rw-r--r--src/Groups.c21
1 files changed, 15 insertions, 6 deletions
diff --git a/src/Groups.c b/src/Groups.c
index e1c833b..cd4fa5c 100644
--- a/src/Groups.c
+++ b/src/Groups.c
@@ -3,13 +3,14 @@
@date Wed Sep 14 23:47:43 2000
@author Gabrielle Allen
@desc
- Pages about groups
+ Pages about groups.
@enddesc
@version $Id$
@@*/
#include <stdio.h>
#include <stdlib.h>
+#include <string.h>
#include "cctk.h"
#include "util_String.h"
@@ -23,15 +24,16 @@ CCTK_FILEVERSION(CactusConnect_HTTPDExtra_Groups_c)
/********************************************************************
- ********************* Local Routine Prototypes *********************
+ ********************* External Routines **********************
********************************************************************/
+int HTTPUTILS_RegisterPages (void);
-int HTTPUTILS_RegisterPages(void);
-static int MessagesPage(const cGH *cctkGH, httpRequest *request, void *data);
/********************************************************************
- ********************* External Routines **********************
+ ********************* Internal Routines **********************
********************************************************************/
+static int MessagesPage(const cGH *cctkGH, httpRequest *request, void *data);
+
/*@@
@routine HTTPUTILS_RegisterPages
@@ -40,6 +42,13 @@ static int MessagesPage(const cGH *cctkGH, httpRequest *request, void *data);
@desc
Httpd utils registration routine.
@enddesc
+ @calls HTTP_RegisterPage
+ HTTP_ContentLink
+
+ @returntype int
+ @returndesc
+ 0 for success
+ @endreturndesc
@@*/
int HTTPUTILS_RegisterPages (void)
{
@@ -54,7 +63,7 @@ int HTTPUTILS_RegisterPages (void)
}
/********************************************************************
- ********************* Local Routines *************************
+ ******************** Internal Routines ************************
********************************************************************/
/*@@