mirror of
https://github.com/reactos/reactos.git
synced 2025-08-10 08:03:17 +00:00

- TSVN choked repeatedly when attempting to merge ~9000 revs into the branch (tried 3 times on 2 different computers) - If someone wants to delete aicom-network-fixes, they are welcome to - Lesson learned: Letting a branch get thousands of revs out of date is a horrible idea svn path=/branches/aicom-network-branch/; revision=44353
36 lines
572 B
C
36 lines
572 B
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS system libraries
|
|
* FILE: lib/crt/??????
|
|
* PURPOSE: Unknown
|
|
* PROGRAMER: Unknown
|
|
* UPDATE HISTORY:
|
|
* 25/11/05: Added license header
|
|
*/
|
|
|
|
#include <precomp.h>
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
size_t wcsxfrm(wchar_t *dst,const wchar_t *src, size_t n)
|
|
{
|
|
size_t r = 0;
|
|
int c;
|
|
|
|
if (n != 0) {
|
|
while ((c = *src++) != 0)
|
|
{
|
|
r++;
|
|
if (--n == 0)
|
|
{
|
|
while (*src++ != 0)
|
|
r++;
|
|
break;
|
|
}
|
|
*dst++ = c;
|
|
}
|
|
*dst = 0;
|
|
}
|
|
return r;
|
|
}
|