summaryrefslogtreecommitdiff
path: root/strings/apr_strnatcmp.c
Commit message (Collapse)AuthorAgeFilesLines
* Toss an assert call that only checks input parameters validity which isjerenkrantz2002-02-121-7/+0
| | | | | | | not our style. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62960 13f79535-47bb-0310-9956-ffa450edef68
* WinCE port from Mladen Turk <mturk@mappingsoft.com>wrowe2002-02-121-3/+6
| | | | | | | I think this question deserves an answer - is this assert legit???????? git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62959 13f79535-47bb-0310-9956-ffa450edef68
* When in Rome... or better put... eat our own dogfood.wrowe2001-12-131-2/+2
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62640 13f79535-47bb-0310-9956-ffa450edef68
* Add remaining APR_DECLARE()s to all headers. Conditionally addedwrowe2001-01-181-2/+4
| | | | | | | | | | | | | | | | | | | | 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
* Make the APR headers sane.gstein2000-11-261-1/+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
* Use apr_is*() character test macros to avoid warnings about signedbjh2000-08-061-9/+9
| | | | | | | characters. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60485 13f79535-47bb-0310-9956-ffa450edef68
* prefix libapr functions and types with apr_dougm2000-08-021-2/+2
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60470 13f79535-47bb-0310-9956-ffa450edef68
* Remove apr_strnatcmp.h. All of the functions prototyped in this filerbb2000-07-231-1/+1
| | | | | | | | have been moved to apr_strings.h. This also modifes Apache to include apr_strings.h instead of apr_strnatcmp.h git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60427 13f79535-47bb-0310-9956-ffa450edef68
* Move all APR functions related to strings to their own directory, andrbb2000-07-211-0/+151
create a new header for those functions. This is the first step to removing the apr/lib directory completely, and moving those files/functions to descriptive directories. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60398 13f79535-47bb-0310-9956-ffa450edef68