From af971e4492226e6aedd5164adbb9169c734017bb Mon Sep 17 00:00:00 2001 From: Ryan Bloom Date: Mon, 7 Aug 2000 01:48:55 +0000 Subject: [PATCH] Document util_ebcdic.h with ScanDoc git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86015 13f79535-47bb-0310-9956-ffa450edef68 --- include/util_ebcdic.h | 18 ++++++++++++++++-- 1 file 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 } -- 2.40.0