libc/newlib/libc/sys/sh3eb/strncpy.c

8 lines
254 B
C

#include <stddef.h>
#include <sys/casio_syscalls.h>
DEFINE_CASIO_SYSCALL_FN_PTR(strncpy, char*, (char*, const char*, size_t), 0xAD9)
char* strncpy(char* destination, const char* source, size_t num) {
return _strncpy_ptr(destination, source, num);
}