ladybird/LibC/string.h

12 lines
114 B
C
Raw Normal View History

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