#include "internal.h" char * str·copyn(char *dst, char *src, int n) { while(*src && n-- > 0) *dst++ = *src++; *dst = 0; return dst; }