source: buchla-68k/include/memory.h@ 7258c6a

Last change on this file since 7258c6a was 7258c6a, checked in by Thomas Lopatic <thomas@…>, 7 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
8extern void *memccpy(void *vp1, void *vp2, int8_t c, int16_t n);
9extern void *memchr(void *vp, int8_t c, int16_t n);
10extern void *memcpy(void *vp1, void *vp2, int16_t n);
11extern void *memset(void *vp, int8_t c, int16_t n);
12extern int16_t memcmp(void *vp1, void *vp2, int16_t n);
13extern void *memsetw(void *vp, int16_t s, int16_t n);
14extern void *memcpyw(void *vp1, void *vp2, int16_t n);
15extern int16_t memcmpu(void *vp1, void *vp2, int16_t n);
16
17
Note: See TracBrowser for help on using the repository browser.