mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-31 21:29:06 +00:00
LibC: A bunch of compat work towards porting GCC.
This commit is contained in:
parent
9fd4f4862b
commit
93c0dfd1d7
Notes:
sideshowbarker
2024-07-19 15:38:12 +09:00
Author: https://github.com/awesomekling
Commit: 93c0dfd1d7
18 changed files with 166 additions and 13 deletions
16
LibC/strings.cpp
Normal file
16
LibC/strings.cpp
Normal file
|
@ -0,0 +1,16 @@
|
|||
#include <strings.h>
|
||||
#include <assert.h>
|
||||
|
||||
extern "C" {
|
||||
|
||||
int strcasecmp(const char*, const char*)
|
||||
{
|
||||
assert(false);
|
||||
}
|
||||
|
||||
int strncasecmp(const char*, const char*, size_t)
|
||||
{
|
||||
assert(false);
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue