Last change
on this file since 411371e was 7258c6a, checked in by Thomas Lopatic <thomas@…>, 8 years ago |
Use standard integer types.
|
-
Property mode
set to
100644
|
File size:
699 bytes
|
Line | |
---|
1 | /*
|
---|
2 | ============================================================================
|
---|
3 | memory.h -- header for memory functions
|
---|
4 | Version 3 -- 1987-04-06 -- D.N. Lynx Crowe
|
---|
5 | ============================================================================
|
---|
6 | */
|
---|
7 |
|
---|
8 | extern void *memccpy(void *vp1, void *vp2, int8_t c, int16_t n);
|
---|
9 | extern void *memchr(void *vp, int8_t c, int16_t n);
|
---|
10 | extern void *memcpy(void *vp1, void *vp2, int16_t n);
|
---|
11 | extern void *memset(void *vp, int8_t c, int16_t n);
|
---|
12 | extern int16_t memcmp(void *vp1, void *vp2, int16_t n);
|
---|
13 | extern void *memsetw(void *vp, int16_t s, int16_t n);
|
---|
14 | extern void *memcpyw(void *vp1, void *vp2, int16_t n);
|
---|
15 | extern int16_t memcmpu(void *vp1, void *vp2, int16_t n);
|
---|
16 |
|
---|
17 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.