1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2026-01-20 05:11:01 +00:00
serenity/LibC/string.h
2018-10-26 13:32:13 +02:00

13 lines
193 B
C

#pragma once
#include "types.h"
extern "C" {
size_t strlen(const char*);
int strcmp(const char*, const char*);
void memcpy(void*, const void*, size_t);
const char* strerror(int errnum);
}