1
0
mirror of https://github.com/cc65/cc65.git synced 2025-03-14 21:30:10 +00:00

21 lines
209 B
C
Raw Normal View History

/*
* strxfrm.c
*
* Ullrich von Bassewitz, 11.12.1998
*/
#include <string.h>
size_t strxfrm (char* dest, const char* src, size_t count)
{
strncpy (dest, src, count);
return strlen (src);
}