update for HEAD-2003091401
[reactos.git] / lib / msvcrt / stdlib / wcstombs.c
index 01f59f6..1ba1e0f 100644 (file)
@@ -49,14 +49,18 @@ mbstate_t __no_r_state;  /* Now defined in wcstombs.c.  */
 size_t
 __wcsrtombs (char *dst, const wchar_t **src, size_t len, mbstate_t *ps);
 
-/* Convert the `wchar_t' string in PWCS to a multibyte character string
-   in S, writing no more than N characters.  Return the number of bytes
-   written, or (size_t) -1 if an invalid `wchar_t' was found.
-
-   Attention: this function should NEVER be intentionally used.
-   The interface is completely stupid.  The state is shared between
-   all conversion functions.  You should use instead the restartable
-   version `wcsrtombs'.  */
+/*
+ * Convert the `wchar_t' string in PWCS to a multibyte character string
+ * in S, writing no more than N characters.  Return the number of bytes
+ * written, or (size_t) -1 if an invalid `wchar_t' was found.
+ *
+ * Attention: this function should NEVER be intentionally used.
+ * The interface is completely stupid.  The state is shared between
+ * all conversion functions.  You should use instead the restartable
+ * version `wcsrtombs'.
+ *
+ * @implemented
+ */
 size_t
 wcstombs (char *s, const wchar_t *pwcs, size_t n)
 {