Last change
on this file since 0292fbb was 5c13d64, checked in by Thomas Lopatic <thomas@…>, 8 years ago |
Use void pointers for mem*() functions.
|
-
Property mode
set to
100644
|
File size:
651 bytes
|
Rev | Line | |
---|
[f40a309] | 1 | /*
|
---|
| 2 | ============================================================================
|
---|
| 3 | memory.h -- header for memory functions
|
---|
| 4 | Version 3 -- 1987-04-06 -- D.N. Lynx Crowe
|
---|
| 5 | ============================================================================
|
---|
| 6 | */
|
---|
| 7 |
|
---|
[5c13d64] | 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
TracBrowser
for help on using the repository browser.