bringelle/src/core/mem.h

12 lines
146 B
C
Raw Normal View History

2021-04-05 14:46:31 +02:00
#ifndef MEM_H
#define MEM_H
#include "types.h"
2021-04-12 10:13:21 +02:00
/**
* Copy size byte from *src to *dst
*/
2021-04-05 14:46:31 +02:00
void memcpy(void *src, void *dst, int size);
#endif