General Info | |
Interface: MemMan Files: lib/memman.h Last change: 11/02/2002 Author: Luiz Henrique Shigunov | Description |
Functions | |
|
|
This page describes MemMan interface.
int Compare(const void *m1, const void *m2, unsigned int count);
This function compares count bytes from m1 with m2.
void Copy(void *dest, const void *src, unsigned int count);
This function copies count bytes from src to dest.
The areas CANNOT overlay and dest must be big enough.
void *FindByte(const void *mem, int c, unsigned int count);
This function finds the first occurrence of byte c in mem, no more than count bytes will be searched.
void Move(void *dest, const void *src, unsigned int count);
This function copies count bytes from src to dest.
The memory areas CAN overlay and dest must be big enough.
void Set(void *mem, unsigned int c, unsigned int count);
This function fills count bytes of mem with byte c.
Nothing.