mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
85b886c2e0
It still requires an ELF compiler and linker, but at least it builds. I need to get rid of the "Unix" namespace. This does a lot of that.
17 lines
337 B
C
17 lines
337 B
C
#pragma once
|
|
|
|
#include "types.h"
|
|
|
|
extern "C" {
|
|
|
|
void memcpy(void*, const void*, dword);
|
|
void strcpy(char*, const char*);
|
|
int strcmp(char const*, const char*);
|
|
size_t strlen(const char*);
|
|
void *memset(void*, byte, dword);
|
|
char *strdup(const char*);
|
|
int memcmp(const void*, const void*, size_t);
|
|
char* strrchr(const char* str, int ch);
|
|
|
|
}
|