aboutsummaryrefslogtreecommitdiff
path: root/include/std/mem.h
blob: 2afce0d289270415ae5dd0156e4d2dea8f38738e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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);

long am_pagesize();

#endif