summaryrefslogtreecommitdiff
path: root/include/apr_xlate.h
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright to 2001fielding2001-02-161-1/+1
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61235 13f79535-47bb-0310-9956-ffa450edef68
* Revert last change and solve warning by explicit cast. The need wouldfielding2001-01-281-2/+2
| | | | | | | have been obvious if dependencies were in the Makefile. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61152 13f79535-47bb-0310-9956-ffa450edef68
* Remove compiler warnings due to lack of string.h and bad const onfielding2001-01-281-2/+2
| | | | | | | | | the second argument of iconv (the Linux man pages show an incorrect prototype -- the header files and single Unix spec say that there is no const). git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61149 13f79535-47bb-0310-9956-ffa450edef68
* fix typo in recent APR_DECLARE workgstein2001-01-181-2/+1
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61074 13f79535-47bb-0310-9956-ffa450edef68
* Add remaining APR_DECLARE()s to all headers. Conditionally addedwrowe2001-01-181-9/+21
| | | | | | | | | | | | | | | | | | | | APR_DECLARES() to the sources, based on compilation emits (there are many that should be changed eventually, but the compiler will emit errors if those sources are added for win32). This change also splits libapr from apr, so the two projects are compiled seperately. Both .dsp files must be kept up-to-date with source file revisions. Finally, libapr.def is no longer needed - so it is gone. PR: Obtained from: Submitted by: Reviewed by: git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61072 13f79535-47bb-0310-9956-ffa450edef68
* Cleanup the rest of the docs.rbb2000-12-041-2/+2
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60880 13f79535-47bb-0310-9956-ffa450edef68
* This is basically a small header re-org, it doesn't really change anything,rbb2000-12-011-27/+29
| | | | | | | | | | | | | | | | | | | | | just how we report it. There are two classes of changes, both of which are required by the script that generates the export list. 1) Always specify what we have instead of what we don't have. This just means that I changed a #if !APR_HAS_XLATE to #if APR_HAS_XLATE It is easier for the exports script if all of APR is specified the same way. 2) Wrap functions that aren't actually defined with APR_NOT_DONE_YET. This class of changes comes about because we have some functions that have prototypes in the headers, but no implementation. I just put #if APR_NOT_DONE_YET and #endif around those prototypes so that our exports script doesn't try to link against them. There is a comment explaining this in the code, and this can be removed once the functions actually exist. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60827 13f79535-47bb-0310-9956-ffa450edef68
* Make the APR headers sane.gstein2000-11-261-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | *) Reduce the dependencies between APR headers. This assists APR clients who generate dependencies, and (used to) pick up "all" of the APR headers. Basically, this was trimming back the headers to just what was needed. Some unneeded system headers were removed, too. The most common headers to put back in were: apr.h, apr_pools.h, and apr_errno.h. *) move apr_pool_t declaration and a few pool functions from apr_general.h to apr_pools.h. *) move kill_conditions and process_chain from apr_pools.h to apr_thread_proc.h. *) move apr_note_subprocess() from apr_general.h to apr_thread_proc.h *) add stdio.h to apr_pools.c (compensate for removal from apr_general.h) *) add apr_lib.h to apr_strnatcmp.c (compensate for apr_strings.h no longer including apr_lib.h) git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60796 13f79535-47bb-0310-9956-ffa450edef68
* Remaining cleanup of ap_ -> apr_ and AP_ -> APR_ transformation...wrowe2000-08-061-23/+23
| | | | | | | | | | | | | see src/lib/apr/apr_compat.h for most details. Also a few minor nits to get Win32 to build. PR: Obtained from: Submitted by: Reviewed by: git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60481 13f79535-47bb-0310-9956-ffa450edef68
* prefix libapr functions and types with apr_dougm2000-08-021-11/+11
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60470 13f79535-47bb-0310-9956-ffa450edef68
* Update apr_xlate.h to use ScanDocrbb2000-07-231-75/+55
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60430 13f79535-47bb-0310-9956-ffa450edef68
* Add support to ap_xlate_open() for an app to specify that thetrawick2000-06-141-1/+5
| | | | | | | | | | | charset of the locale is to be used for the source or target charset. At EBCDIC initialization, use the locale charset as one of the pair when setting up the default translation handles for content. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60203 13f79535-47bb-0310-9956-ffa450edef68
* Add ap_xlate_get_sb() so that an app can find out whether or nottrawick2000-05-241-1/+18
| | | | | | | a conversion is single-byte only. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60090 13f79535-47bb-0310-9956-ffa450edef68
* Add ap_xlate_conv_byte() to convert one char between single-byte charactertrawick2000-05-101-0/+19
| | | | | | | sets. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60034 13f79535-47bb-0310-9956-ffa450edef68
* Add ap_xlate_open() et al for translation of text between differenttrawick2000-04-201-0/+171
character sets. The initial implementation requires iconv(). git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@59897 13f79535-47bb-0310-9956-ffa450edef68