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

#include "types.h"

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

#endif