Does anyone know the correct header file for the Memcpyp(); function in C? <String.h> doesn't do it and i tried a suggested one <lcstring.h>, but my compiler doesn't recognize it.
Nope, i meant memcpyp(). It goes memcpyp(Target, Source, T_Size, S_Size, 'x'), memcpyp copies bytes from the source area to the target area, padding out to the target size ( tsize ), with characters 'x', after ssize bytes are copied from source.