rbb 00/12/03 22:28:53
Modified: include apr_strings.h apr_thread_proc.h apr_xlate.h
Log:
Cleanup the rest of the docs.
Revision Changes Path
1.8 +2 -2 apr/include/apr_strings.h
Index: apr_strings.h
===================================================================
RCS file: /home/cvs/apr/include/apr_strings.h,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- apr_strings.h 2000/11/26 03:00:03 1.7
+++ apr_strings.h 2000/12/04 06:28:52 1.8
@@ -96,8 +96,8 @@
/**
* Do a natural order comparison of two strings.
- * @param The first string to compare
- * @param The second string to compare
+ * @param a The first string to compare
+ * @param b The second string to compare
* @return Either <0, 0, or >0. If the first string is less than the second
* this returns <0, if they are equivalent it returns 0, and if the
* first string is greater than second string it retuns >0.
1.50 +0 -1 apr/include/apr_thread_proc.h
Index: apr_thread_proc.h
===================================================================
RCS file: /home/cvs/apr/include/apr_thread_proc.h,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- apr_thread_proc.h 2000/11/28 05:16:08 1.49
+++ apr_thread_proc.h 2000/12/04 06:28:53 1.50
@@ -443,7 +443,6 @@
* </PRE>
* @param p Pool to allocate child information out of.
*/
-
apr_status_t apr_wait_all_procs(apr_proc_t *proc, apr_wait_t *status,
apr_wait_how_e waithow, apr_pool_t *p);
1.10 +2 -2 apr/include/apr_xlate.h
Index: apr_xlate.h
===================================================================
RCS file: /home/cvs/apr/include/apr_xlate.h,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- apr_xlate.h 2000/12/01 06:37:45 1.9
+++ apr_xlate.h 2000/12/04 06:28:53 1.10
@@ -148,8 +148,8 @@
* parameters of conversion
* @param inchar The single-byte character to convert.
* @tip This only works when converting between single-byte character sets.
- -1 will be returned if the conversion can't be performed.
-*/
+ * -1 will be returned if the conversion can't be performed.
+ */
apr_int32_t apr_xlate_conv_byte(apr_xlate_t *convset, unsigned char inchar);
/**