mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 17:52:26 -05:00
ef40ebbe6d
These are basically copy and pasted from the regular string version. Also add some more multi-byte/wide conversion stub. libarchive wanted these. There's a lot more, but we can add them one at a time.
17 lines
294 B
C
17 lines
294 B
C
#pragma once
|
|
|
|
#include <stddef.h>
|
|
#include <sys/cdefs.h>
|
|
|
|
__BEGIN_DECLS
|
|
|
|
#ifndef WEOF
|
|
# define WEOF (0xffffffffu)
|
|
#endif
|
|
|
|
size_t wcslen(const wchar_t*);
|
|
wchar_t* wcscpy(wchar_t*, const wchar_t*);
|
|
int wcscmp(const wchar_t*, const wchar_t*);
|
|
wchar_t* wcschr(const wchar_t*, int);
|
|
|
|
__END_DECLS
|