summaryrefslogtreecommitdiffstats
path: root/sw/z80/libc/include/string.h
blob: 9c002e3142c9abaac3ef78e7bc26bb4d5f340396 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef __STRING_H__
#define __STRING_H__

#include "types.h"

void * memset(void *dest, const int8_t src, size_t n);

void *memcpy(void *dest, const void *src, size_t n);

int8_t memcmp(const void *s1, const void *s2, size_t n);

#endif