mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
24 lines
510 B
C
24 lines
510 B
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS system libraries
|
|
* FILE: lib/sdk/crt/mbstring/mbccpy.c
|
|
* PURPOSE: Copies a multi byte character
|
|
* PROGRAMERS:
|
|
* Copyright 1999 Alexandre Julliard
|
|
* Copyright 2000 Jon Griffths
|
|
*
|
|
*/
|
|
|
|
#include <mbstring.h>
|
|
#include <string.h>
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
void _mbccpy(unsigned char *dst, const unsigned char *src)
|
|
{
|
|
*dst = *src;
|
|
if(_ismbblead(*src))
|
|
*++dst = *++src; /* MB char */
|
|
}
|