MushOS  0.1
A UNIX-like OS prototype, written from scratch
Loading...
Searching...
No Matches
memory.h
1#ifndef MUSHLIB_MEMORY_H
2#define MUSHLIB_MEMORY_H
3
4#include "generic.h"
5
6
7void memory_copy (byte* source, byte* dest, u_dword num_bytes);
8void memory_clear (byte* start, u_dword num_bytes, byte sample);
9void memory_fill (byte* source, byte* dest, u_dword source_bytes, u_dword times);
10boolean memory_compare (byte* comp1, byte* comp2, u_dword length);
11
12#endif // MUSHLIB_MEMORY_H