1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- #ifndef APACHE_UTIL_EBCDIC_H
- #define APACHE_UTIL_EBCDIC_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- #include "apr_xlate.h"
- #include "httpd.h"
- #include "util_charset.h"
- #if APR_CHARSET_EBCDIC || defined(DOXYGEN)
- apr_status_t ap_init_ebcdic(apr_pool_t *pool);
- void ap_xlate_proto_to_ascii(char *buffer, apr_size_t len);
- void ap_xlate_proto_from_ascii(char *buffer, apr_size_t len);
- int ap_rvputs_proto_in_ascii(request_rec *r, ...);
- #else
- #define ap_xlate_proto_to_ascii(x,y)
- #define ap_xlate_proto_from_ascii(x,y)
- #define ap_rvputs_proto_in_ascii ap_rvputs
- #endif
- #ifdef __cplusplus
- }
- #endif
- #endif
|