update for HEAD-2003091401
[reactos.git] / lib / msvcrt / mbstring / mbsncpy.c
index 96d600f..5b4a2c9 100644 (file)
@@ -11,6 +11,9 @@
 #include <msvcrt/mbstring.h>
 
 
+/*
+ * @implemented
+ */
 unsigned char* _mbsncpy(unsigned char *str1, const unsigned char *str2, size_t n)
 {
        unsigned char *s1 = (unsigned char *)str1;
@@ -45,12 +48,13 @@ unsigned char* _mbsncpy(unsigned char *str1, const unsigned char *str2, size_t n
 }
 
 
-//
-//The _mbsnbcpy function copies count bytes from src to dest. If src is shorter 
-//than dest, the string is padded with null characters. If dest is less than or 
-//equal to count it is not terminated with a null character.
-//
-
+/*
+ * The _mbsnbcpy function copies count bytes from src to dest. If src is shorter 
+ * than dest, the string is padded with null characters. If dest is less than or 
+ * equal to count it is not terminated with a null character.
+ *
+ * @implemented
+ */
 unsigned char * _mbsnbcpy(unsigned char *str1, const unsigned char *str2, size_t n)
 {
        unsigned char *s1 = (unsigned char *)str1;