source: buchla-68k/include/memory.h@ 5c13d64

Last change on this file since 5c13d64 was 5c13d64, checked in by Thomas Lopatic <thomas@…>, 7 years ago

Use void pointers for mem*() functions.

  • Property mode set to 100644
File size: 651 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, char c, int n);
9extern void *memchr(void *vp, char c, int n);
10extern void *memcpy(void *vp1, void *vp2, int n);
11extern void *memset(void *vp, char c, int n);
12extern int memcmp(void *vp1, void *vp2, int n);
13extern void *memsetw(void *vp, short s, short n);
14extern void *memcpyw(void *vp1, void *vp2, int n);
15extern int memcmpu(void *vp1, void *vp2, int n);
Note: See TracBrowser for help on using the repository browser.