ZealOS/zealbooter/lib/strncpy.h

7 lines
121 B
C
Raw Normal View History

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