#ifndef __STRNCPY_H__
#define __STRNCPY_H__

char *strncpy(char *s1, const char *s2, size_t n);

#endif // __STRNCPY_H__