4 * Define string ops: strchr strrchr memcmp memmove memset
30 # define strrchr rindex
33 char *strchr(), *strrchr();
36 # define NTP_NEED_BOPS
38 #endif /* STDC_HEADERS */
41 # define memcmp(a,b,c) bcmp(a,b,(int)c)
42 # define memmove(t,f,c) bcopy(f,t,(int)c)
43 # define memcpy(t,f,c) bcopy(f,t,(int)c)
44 # define memset(a,x,c) if (x == 0x00) bzero(a,(int)c); else ntp_memset((char*)a,x,c)
46 void ntp_memset
P((char *, int, int));
48 #endif /* NTP_NEED_BOPS */
50 #endif /* _ntp_string_h */