summaryrefslogtreecommitdiff
path: root/kernel/Helpers/memory.h
blob: 5f399db89ee3a36ab9519977289ef182c14c23ba (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef __memory__
#define __memory__

#include "./types.h"

//Fonction to copy data into memory
int memcpy(u32 source, u32 dest, u32 size);


#endif