aboutsummaryrefslogtreecommitdiff
path: root/src/utils/mem.h
blob: b09c3f08c43ed28fbd470767687ad6b77d4c7f64 (plain)
1
2
3
4
5
6
7
8
9
#ifndef MEM_H
#define MEM_H

#include "types.h"


void memcpy(void *src, void *dst, int size);

#endif