This repository has been archived on 2025-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
hilbert-os/euler/include/cstring

8 lines
146 B
Text

#pragma once
#include <stddef.h>
namespace std {
size_t strlen(const char *str);
void *memcpy(void *dest, const void *src, size_t count);
}