You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
222 B
C
21 lines
222 B
C
12 years ago
|
/*
|
||
|
* strxfrm.c
|
||
|
*
|
||
|
* Ullrich von Bassewitz, 11.12.1998
|
||
|
*/
|
||
|
|
||
|
|
||
|
|
||
|
#include <string.h>
|
||
|
|
||
|
|
||
|
|
||
|
size_t __fastcall__ strxfrm (char* dest, const char* src, size_t count)
|
||
|
{
|
||
|
strncpy (dest, src, count);
|
||
|
return strlen (src);
|
||
|
}
|
||
|
|
||
|
|
||
|
|