From: Ryan Bloom Date: Mon, 7 Aug 2000 01:48:55 +0000 (+0000) Subject: Document util_ebcdic.h with ScanDoc X-Git-Tag: APACHE_2_0_ALPHA_6~82 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=af971e4492226e6aedd5164adbb9169c734017bb;p=apache Document util_ebcdic.h with ScanDoc git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86015 13f79535-47bb-0310-9956-ffa450edef68 --- 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 }