mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +00:00
LibC: Add some wchar functions
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.
This commit is contained in:
committed by
Andreas Kling
parent
92953ba2f3
commit
ef40ebbe6d
@@ -52,7 +52,8 @@ LIBC_OBJS = \
|
|||||||
netdb.o \
|
netdb.o \
|
||||||
sched.o \
|
sched.o \
|
||||||
dlfcn.o \
|
dlfcn.o \
|
||||||
libgen.o
|
libgen.o \
|
||||||
|
wchar.o
|
||||||
|
|
||||||
ASM_OBJS = setjmp.ao crti.ao crtn.ao
|
ASM_OBJS = setjmp.ao crti.ao crtn.ao
|
||||||
|
|
||||||
|
|||||||
@@ -385,6 +385,16 @@ size_t mbstowcs(wchar_t*, const char*, size_t)
|
|||||||
ASSERT_NOT_REACHED();
|
ASSERT_NOT_REACHED();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
size_t mbtowc(wchar_t*, const char*, size_t)
|
||||||
|
{
|
||||||
|
ASSERT_NOT_REACHED();
|
||||||
|
}
|
||||||
|
|
||||||
|
int wctomb(char*, wchar_t)
|
||||||
|
{
|
||||||
|
ASSERT_NOT_REACHED();
|
||||||
|
}
|
||||||
|
|
||||||
template<typename T, T min_value, T max_value>
|
template<typename T, T min_value, T max_value>
|
||||||
static T strtol_impl(const char* nptr, char** endptr, int base)
|
static T strtol_impl(const char* nptr, char** endptr, int base)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -44,6 +44,8 @@ char* mktemp(char*);
|
|||||||
char* mkdtemp(char*);
|
char* mkdtemp(char*);
|
||||||
void* bsearch(const void* key, const void* base, size_t nmemb, size_t size, int (*compar)(const void*, const void*));
|
void* bsearch(const void* key, const void* base, size_t nmemb, size_t size, int (*compar)(const void*, const void*));
|
||||||
size_t mbstowcs(wchar_t*, const char*, size_t);
|
size_t mbstowcs(wchar_t*, const char*, size_t);
|
||||||
|
size_t mbtowc(wchar_t*, const char*, size_t);
|
||||||
|
int wctomb(char*, wchar_t);
|
||||||
|
|
||||||
#define RAND_MAX 32767
|
#define RAND_MAX 32767
|
||||||
int rand();
|
int rand();
|
||||||
|
|||||||
40
Libraries/LibC/wchar.cpp
Normal file
40
Libraries/LibC/wchar.cpp
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
#include <wchar.h>
|
||||||
|
|
||||||
|
extern "C" {
|
||||||
|
|
||||||
|
size_t wcslen(const wchar_t* str)
|
||||||
|
{
|
||||||
|
size_t len = 0;
|
||||||
|
while (*(str++))
|
||||||
|
++len;
|
||||||
|
return len;
|
||||||
|
}
|
||||||
|
|
||||||
|
wchar_t* wcscpy(wchar_t* dest, const wchar_t* src)
|
||||||
|
{
|
||||||
|
wchar_t* originalDest = dest;
|
||||||
|
while ((*dest++ = *src++) != '\0')
|
||||||
|
;
|
||||||
|
return originalDest;
|
||||||
|
}
|
||||||
|
|
||||||
|
int wcscmp(const wchar_t* s1, const wchar_t* s2)
|
||||||
|
{
|
||||||
|
while (*s1 == *s2++)
|
||||||
|
if (*s1++ == 0)
|
||||||
|
return 0;
|
||||||
|
return *(const wchar_t*)s1 - *(const wchar_t*)--s2;
|
||||||
|
}
|
||||||
|
|
||||||
|
wchar_t* wcschr(const wchar_t* str, int c)
|
||||||
|
{
|
||||||
|
wchar_t ch = c;
|
||||||
|
for (;; ++str) {
|
||||||
|
if (*str == ch)
|
||||||
|
return const_cast<wchar_t*>(str);
|
||||||
|
if (!*str)
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -9,4 +9,9 @@ __BEGIN_DECLS
|
|||||||
# define WEOF (0xffffffffu)
|
# define WEOF (0xffffffffu)
|
||||||
#endif
|
#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
|
__END_DECLS
|
||||||
|
|||||||
Reference in New Issue
Block a user