summaryrefslogtreecommitdiff
path: root/include/util_ebcdic.h
diff options
context:
space:
mode:
authorRyan Bloom <rbb@apache.org>2000-08-07 01:48:55 +0000
committerRyan Bloom <rbb@apache.org>2000-08-07 01:48:55 +0000
commitaf971e4492226e6aedd5164adbb9169c734017bb (patch)
treedfb6766981409c16b9f4bb78cf5e9b7b39ca95a7 /include/util_ebcdic.h
parentc30e232c7c0d7238b6e9e6648beb92e7a5bc886f (diff)
downloadhttpd-af971e4492226e6aedd5164adbb9169c734017bb.tar.gz
Document util_ebcdic.h with ScanDoc
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86015 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/util_ebcdic.h')
-rw-r--r--include/util_ebcdic.h18
1 files changed, 16 insertions, 2 deletions
diff --git a/include/util_ebcdic.h b/include/util_ebcdic.h
index 71589c5512..6086fc33af 100644
--- a/include/util_ebcdic.h
+++ b/include/util_ebcdic.h
@@ -66,11 +66,25 @@ extern "C" {
#endif
#include "apr_xlate.h"
+#include "httpd.h"
#include "util_charset.h"
-apr_status_t ap_init_ebcdic(apr_pool_t *);
+/**
+ * @package Utilities for EBCDIC conversion
+ */
+
+/**
+ * Setup all of the global translation handlers
+ * @param pool pool to allocate out of
+ */
+apr_status_t ap_init_ebcdic(apr_pool_t *pool);
-apr_xlate_t *ap_checkconv(struct request_rec *);
+/**
+ * Check the Content-Type to decide if conversion is needed
+ * @param r The current request
+ * @return The translation handle to use for the conversion if one is needed
+ */
+apr_xlate_t *ap_checkconv(request_rec *r);
#ifdef __cplusplus
}