mirror of
https://github.com/cc65/cc65.git
synced 2025-02-06 12:31:12 +00:00
21 lines
222 B
C
21 lines
222 B
C
/*
|
|
* 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);
|
|
}
|
|
|
|
|
|
|