HomeAut
Main Page
Data Structures
Files
File List
Globals
MEM.h
1
/*
2
* MEM.h
3
*
4
* Created on: Aug 31, 2016
5
* Author: Vizi G�bor
6
*/
7
8
#ifndef MEM_H_
9
#define MEM_H_
10
11
12
13
/*------------------------------------------------------------------------------
14
* Global function declarations
15
*----------------------------------------------------------------------------*/
16
17
//void * memcpy ( void * destination, const void * source, size_t num );
18
void
* memcpy(
void
* destination,
const
void
* source,
size_t
num);
19
20
//void * memset ( void * ptr, int value, size_t num );
21
void
* memset(
void
* ptr,
int
value,
size_t
num);
22
23
void
* memmove(
void
* destination,
const
void
* source,
size_t
num);
24
25
void
* meminit(
void
* ptr,
size_t
num);
26
27
28
29
#endif
/* MEM_H_ */
Inc
MEM.h
Generated by
1.8.11