utf8 conversions file with stub implementations of convert_to_utf8 and convert_from_utf8
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@4090 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
2534c14ea1
commit
4e7a2f6c8b
21
src/kits/support/utf8_conversions.cpp
Normal file
21
src/kits/support/utf8_conversions.cpp
Normal file
@ -0,0 +1,21 @@
|
||||
#include <UTF8.h>
|
||||
|
||||
status_t
|
||||
convert_to_utf8(uint32 srcEncoding,
|
||||
const char * src, int32 * srcLen,
|
||||
char * dst, int32 * dstLen,
|
||||
int32 * state, char substitute = B_SUBSTITUTE)
|
||||
{
|
||||
// TODO: implement
|
||||
return B_ERROR;
|
||||
}
|
||||
|
||||
status_t
|
||||
convert_from_utf8(uint32 dstEncoding,
|
||||
const char * src, int32 * srcLen,
|
||||
char * dst, int32 * dstLen,
|
||||
int32 * state, char substitute = B_SUBSTITUTE)
|
||||
{
|
||||
// TODO: implement
|
||||
return B_ERROR;
|
||||
}
|
Loading…
Reference in New Issue
Block a user