libidn-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

CVS libidn/lib


From: libidn-commit
Subject: CVS libidn/lib
Date: Mon, 25 Oct 2004 23:43:30 +0200

Update of /home/cvs/libidn/lib
In directory dopio:/tmp/cvs-serv12979

Modified Files:
        stringprep.c 
Log Message:
Doc fix.


--- /home/cvs/libidn/lib/stringprep.c   2004/06/08 19:38:08     1.36
+++ /home/cvs/libidn/lib/stringprep.c   2004/10/25 21:43:30     1.37
@@ -107,10 +107,10 @@
  * stringprep_4i:
  * @ucs4: input/output array with string to prepare.
  * @len: on input, length of input array with Unicode code points,
- *          on exit, length of output array with Unicode code points.
+ *   on exit, length of output array with Unicode code points.
  * @maxucs4len: maximum length of input/output array.
- * @flags: stringprep profile flags, or 0.
- * @profile: pointer to stringprep profile to use.
+ * @flags: a #Stringprep_profile_flags value, or 0.
+ * @profile: pointer to #Stringprep_profile to use.
  *
  * Prepare the input UCS-4 string according to the stringprep profile,
  * and write back the result to the input string.
@@ -124,14 +124,15 @@
  * indicate how large the buffer holding the string is.  This function
  * will not read or write to code points outside that size.
  *
- * The @flags are one of Stringprep_profile_flags, or 0.
+ * The @flags are one of #Stringprep_profile_flags values, or 0.
  *
- * The @profile contain the instructions to perform.  Your application
- * can define new profiles, possibly re-using the generic stringprep
- * tables that always will be part of the library, or use one of the
- * currently supported profiles.
+ * The @profile contain the #Stringprep_profile instructions to
+ * perform.  Your application can define new profiles, possibly
+ * re-using the generic stringprep tables that always will be part of
+ * the library, or use one of the currently supported profiles.
  *
- * Return value: Returns %STRINGPREP_OK iff successful, or an error code.
+ * Return value: Returns %STRINGPREP_OK iff successful, or an
+ *   #Stringprep_rc error code.
  **/
 int
 stringprep_4i (uint32_t * ucs4, size_t * len, size_t maxucs4len,
@@ -294,8 +295,8 @@
  * stringprep_4zi:
  * @ucs4: input/output array with zero terminated string to prepare.
  * @maxucs4len: maximum length of input/output array.
- * @flags: stringprep profile flags, or 0.
- * @profile: pointer to stringprep profile to use.
+ * @flags: a #Stringprep_profile_flags value, or 0.
+ * @profile: pointer to #Stringprep_profile to use.
  *
  * Prepare the input zero terminated UCS-4 string according to the
  * stringprep profile, and write back the result to the input string.
@@ -304,14 +305,15 @@
  * indicate how large the buffer holding the string is.  This function
  * will not read or write to code points outside that size.
  *
- * The @flags are one of Stringprep_profile_flags, or 0.
+ * The @flags are one of #Stringprep_profile_flags values, or 0.
  *
- * The @profile contain the instructions to perform.  Your application
- * can define new profiles, possibly re-using the generic stringprep
- * tables that always will be part of the library, or use one of the
- * currently supported profiles.
+ * The @profile contain the #Stringprep_profile instructions to
+ * perform.  Your application can define new profiles, possibly
+ * re-using the generic stringprep tables that always will be part of
+ * the library, or use one of the currently supported profiles.
  *
- * Return value: Returns %STRINGPREP_OK iff successful, or an error code.
+ * Return value: Returns %STRINGPREP_OK iff successful, or an
+ *   #Stringprep_rc error code.
  **/
 int
 stringprep_4zi (uint32_t * ucs4, size_t maxucs4len,
@@ -330,8 +332,8 @@
  * stringprep:
  * @in: input/ouput array with string to prepare.
  * @maxlen: maximum length of input/output array.
- * @flags: stringprep profile flags, or 0.
- * @profile: pointer to stringprep profile to use.
+ * @flags: a #Stringprep_profile_flags value, or 0.
+ * @profile: pointer to #Stringprep_profile to use.
  *
  * Prepare the input zero terminated UTF-8 string according to the
  * stringprep profile, and write back the result to the input string.
@@ -344,12 +346,12 @@
  * indicate how large the buffer holding the string is.  This function
  * will not read or write to characters outside that size.
  *
- * The @flags are one of Stringprep_profile_flags, or 0.
+ * The @flags are one of #Stringprep_profile_flags values, or 0.
  *
- * The @profile contain the instructions to perform.  Your application
- * can define new profiles, possibly re-using the generic stringprep
- * tables that always will be part of the library, or use one of the
- * currently supported profiles.
+ * The @profile contain the #Stringprep_profile instructions to
+ * perform.  Your application can define new profiles, possibly
+ * re-using the generic stringprep tables that always will be part of
+ * the library, or use one of the currently supported profiles.
  *
  * Return value: Returns %STRINGPREP_OK iff successful, or an error code.
  **/
@@ -413,7 +415,7 @@
  * @in: input array with UTF-8 string to prepare.
  * @out: output variable with pointer to newly allocate string.
  * @profile: name of stringprep profile to use.
- * @flags: stringprep profile flags, or 0.
+ * @flags: a #Stringprep_profile_flags value, or 0.
  *
  * Prepare the input zero terminated UTF-8 string according to the
  * stringprep profile, and return the result in a newly allocated
@@ -425,7 +427,7 @@
  *
  * The output @out variable must be deallocated by the caller.
  *
- * The @flags are one of Stringprep_profile_flags, or 0.
+ * The @flags are one of #Stringprep_profile_flags values, or 0.
  *
  * The @profile specifies the name of the stringprep profile to use.
  * It must be one of the internally supported stringprep profiles.





reply via email to

[Prev in Thread] Current Thread [Next in Thread]