MCPcopy Create free account
hub / github.com/Sinflower/UberWolf / StringToCharCodeString

Function StringToCharCodeString

3rdParty/DXLib/CharCode.cpp:1410–1413  ·  view source on GitHub ↗

文字列を1文字4バイトの配列に変換する( 戻り値:変換後のサイズ、ヌル文字含む( 単位:バイト ) )

Source from the content-addressed store, hash-verified

1408
1409// 文字列を1文字4バイトの配列に変換する( 戻り値:変換後のサイズ、ヌル文字含む( 単位:バイト ) )
1410extern int StringToCharCodeString( const char *Src, int SrcCharCodeFormat, u32 *Dest )
1411{
1412 return StringToCharCodeString_inline( Src, SrcCharCodeFormat, Dest ) ;
1413}
1414
1415// 1文字4バイトの配列を文字列に変換する( 戻り値:変換後のサイズ、ヌル文字含む( 単位:バイト ) )
1416extern int CharCodeStringToString( const u32 *Src, char *Dest, int DestCharCodeFormat )

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected