dos_compilers/Microsoft C v3/INC/MEMORY.H

30 lines
791 B
C++
Raw Normal View History

2024-07-01 14:49:38 +02:00
/*
* memory.h
*
* This include file contains the function declarations for the System V
* compatable buffer (memory) manipulation routines
*
* Copyright (C) Microsoft Corporation, 1984
*
*/
/* function declarations for those who want strong type checking
* on arguments to library function calls
*/
#ifdef LINT_ARGS /* arg. checking enabled */
char *memccpy(char *, char *, int, unsigned int);
char *memchr(char *, int, unsigned int);
int memcmp(char *, char *, unsigned int);
char *memcpy(char *, char *, unsigned int);
char *memset(char *, int, unsigned int);
void movedata(unsigned int, unsigned int, unsigned int, unsigned int, unsigned int);
#else
extern char *memccpy(), *memchr();
extern char *memcpy(), *memset();
#endif /* LINT_ARGS */