mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 09:46:04 -05:00
34087a9f90
Now we can build GCC with --with-newlib, which hopefully cuts down on weird toolchain build issues.
13 lines
295 B
C
13 lines
295 B
C
#pragma once
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__BEGIN_DECLS
|
|
|
|
typedef void * iconv_t;
|
|
|
|
extern iconv_t iconv_open(const char* tocode, const char* fromcode);
|
|
extern size_t iconv(iconv_t, char** inbuf, size_t* inbytesleft, char** outbuf, size_t* outbytesleft);
|
|
extern int iconv_close(iconv_t);
|
|
|
|
__END_DECLS
|