2020-09-30 17:12:29 +02:00

80 lines
1.6 KiB
C

/***
*mbsnbcpy.c - Copy one string to another, n bytes only (MBCS)
*
* Copyright (c) 1985-1993, Microsoft Corporation. All rights reserved.
*
*Purpose:
* Copy one string to another, n bytes only (MBCS)
*
*Revision History:
* 05-19-93 KRS Created from mbsncpy.
* 08-03-93 KRS Fix logic bug.
*
*******************************************************************************/
#ifdef _MBCS
#include <cruntime.h>
#include <mbdata.h>
#include <mbctype.h>
#include <mbstring.h>
/***
* _mbsnbcpy - Copy one string to another, n bytes only (MBCS)
*
*Purpose:
* Copies exactly cnt bytes from src to dst. If strlen(src) < cnt, the
* remaining character are padded with null bytes. If strlen >= cnt, no
* terminating null byte is added. 2-byte MBCS characters are handled
* correctly.
*
*Entry:
* unsigned char *dst = destination for copy
* unsigned char *src = source for copy
* int cnt = number of characters to copy
*
*Exit:
* returns dst = destination of copy
*
*Exceptions:
*
*******************************************************************************/
unsigned char * _CRTAPI1 _mbsnbcpy(dst, src, cnt)
unsigned char *dst;
const unsigned char *src;
size_t cnt;
{
unsigned char *start = dst;
while (cnt) {
cnt--;
if (_ISLEADBYTE(*src)) {
*dst++ = *src++;
if (!cnt) {
dst[-1] = '\0';
break;
}
cnt--;
if ((*dst++ = *src++) == '\0') {
dst[-2] = '\0';
break;
}
}
else
if ((*dst++ = *src++) == '\0')
break;
}
/* pad with nulls as needed */
while (cnt--)
*dst++ = '\0';
return start;
}
#endif /* _MBCS */