- Timestamp:
- 07/09/2017 01:36:31 PM (7 years ago)
- Branches:
- master
- Children:
- 0292fbb
- Parents:
- 002f873
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
include/memory.h
r002f873 r5c13d64 6 6 */ 7 7 8 extern char *memccpy(char *s1, char *s2, char c, int n);9 extern char *memchr(char *sp, char c, int n);10 extern char *memcpy(char *s1, char *s2, int n);11 extern char *memset(char *sp, char c, int n);12 extern int memcmp( char *s1, char *s2, int n);13 extern short *memsetw(short *sp, short w, short n);14 extern short *memcpyw(short *s1, short *s2, int n);15 extern int memcmpu( char *s1, char *s2, int n);8 extern void *memccpy(void *vp1, void *vp2, char c, int n); 9 extern void *memchr(void *vp, char c, int n); 10 extern void *memcpy(void *vp1, void *vp2, int n); 11 extern void *memset(void *vp, char c, int n); 12 extern int memcmp(void *vp1, void *vp2, int n); 13 extern void *memsetw(void *vp, short s, short n); 14 extern void *memcpyw(void *vp1, void *vp2, int n); 15 extern int memcmpu(void *vp1, void *vp2, int n);
Note:
See TracChangeset
for help on using the changeset viewer.