summaryrefslogtreecommitdiff
path: root/os/bs2000
diff options
context:
space:
mode:
authorIan Holsman <ianh@apache.org>2005-08-28 23:03:59 +0000
committerIan Holsman <ianh@apache.org>2005-08-28 23:03:59 +0000
commit8c1e315d3f23dd93529fd9605da571c4af9dfbf6 (patch)
treea328c4fb500e40c2f642aee3561f334387760c9f /os/bs2000
parent3e168404bcb873ae5f50ea5ef5f365f0dc657b40 (diff)
downloadhttpd-8c1e315d3f23dd93529fd9605da571c4af9dfbf6.tar.gz
Doxygen fixup / cleanup
submited by: Neale Ranns neale ranns.org reviewed by: Ian Holsman git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@263931 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'os/bs2000')
-rw-r--r--os/bs2000/ebcdic.h9
-rw-r--r--os/bs2000/os.h18
2 files changed, 21 insertions, 6 deletions
diff --git a/os/bs2000/ebcdic.h b/os/bs2000/ebcdic.h
index b094feef53..7a3db09908 100644
--- a/os/bs2000/ebcdic.h
+++ b/os/bs2000/ebcdic.h
@@ -14,6 +14,14 @@
* limitations under the License.
*/
+/**
+ * @file bs2000/ebcdic.h
+ * @brief EBCDIC/ASCII converson function declarations
+ *
+ * @addtogroup APACHE_OS_BS2000
+ * @{
+ */
+
#include <sys/types.h>
extern const unsigned char os_toascii[256];
@@ -21,4 +29,5 @@ extern const unsigned char os_toebcdic[256];
void ebcdic2ascii(unsigned char *dest, const unsigned char *srce, size_t count);
void ebcdic2ascii_strictly(unsigned char *dest, const unsigned char *srce, size_t count);
void ascii2ebcdic(unsigned char *dest, const unsigned char *srce, size_t count);
+/** @} */
diff --git a/os/bs2000/os.h b/os/bs2000/os.h
index 48692b7b78..fb28795c71 100644
--- a/os/bs2000/os.h
+++ b/os/bs2000/os.h
@@ -14,6 +14,17 @@
* limitations under the License.
*/
+/**
+ * @file bs2000/os.h
+ * @brief This file in included in all Apache source code. It contains definitions
+ * of facilities available on _this_ operating system (HAVE_* macros),
+ * and prototypes of OS specific functions defined in os.c or os-inline.c
+ *
+ * @defgroup APACHE_OS_BS2000 bs2000
+ * @ingroup APACHE_OS
+ * @{
+ */
+
#ifndef APACHE_OS_BS2000_H
#define APACHE_OS_BS2000_H
@@ -21,14 +32,9 @@
#include "../unix/os.h"
-/*
- * This file in included in all Apache source code. It contains definitions
- * of facilities available on _this_ operating system (HAVE_* macros),
- * and prototypes of OS specific functions defined in os.c or os-inline.c
- */
-
/* Other ap_os_ routines not used by this platform */
extern pid_t os_fork(const char *user);
#endif /* APACHE_OS_BS2000_H */
+/** @} */