aboutsummaryrefslogtreecommitdiff
path: root/include/std/mem.h
blob: ddd2b3193e87c3f3c50982b22b72516fcce935ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef AMALGAM_MEM_H
#define AMALGAM_MEM_H

#include "types.h"
#include "misc.h"

void am_memcpy(void *dest, const void *src, usize size);
int am_memcmp(const void *lhs, const void *rhs, usize size);
bool am_memeql(const void *lhs, const void *rhs, usize size);
void am_memset(void *dest, int value, usize size);

#endif