ZealOS/zealbooter/lib/strncpy.h

6 lines
121 B
C

#ifndef __STRNCPY_H__
#define __STRNCPY_H__
char *strncpy(char *s1, const char *s2, size_t n);
#endif // __STRNCPY_H__