end = Strncpy(dst,src,size)
D0 A1 A0 D0
UBYTE *Strncpy(UBYTE *dst,const UBYTE *src,ULONG bufsize);
Copies one string into another, possibly truncating it to the target buffer size. Returns a pointer to the terminating NUL of the target string, or NULL if the target was truncated.
The curious return code allows easy chaining of multiple Strncpy() calls, i.e. Strncpy(src2,Strncpy(src1,buffer,size),size) concatenates the source strings src1 and src2 in the same buffer. Note that even if the target buffer is too small, a partial copy has been performed and the result is still NUL-terminated.