mirror of
https://github.com/RGBCube/serenity
synced 2025-06-04 02:08:11 +00:00

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
|