/* ============================================================================ memory.h -- header for memory functions Version 3 -- 1987-04-06 -- D.N. Lynx Crowe ============================================================================ */ extern char *memccpy(char *s1, char *s2, char c, int n); extern char *memchr(char *sp, char c, int n); extern char *memcpy(char *s1, char *s2, int n); extern char *memset(char *sp, char c, int n); extern int memcmp(char *s1, char *s2, int n); extern short *memsetw(short *sp, short w, short n); extern short *memcpyw(short *s1, short *s2, int n); extern int memcmpu(char *s1, char *s2, int n);