source: buchla-68k/include/memory.h@ 342a56f

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

Point of no return.

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