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

Function EasyEncodeFileRead

3rdParty/DXLib/FileLib.cpp:323–327  ·  view source on GitHub ↗

データを簡易暗号化してファイルから読み込む関数

Source from the content-addressed store, hash-verified

321
322// データを簡易暗号化してファイルから読み込む関数
323extern void EasyEncodeFileRead( void *Data, int Size, FILE *fp )
324{
325 fread( Data, Size, 1, fp ) ;
326 EasyEncode( Data, Size ) ;
327}
328
329// バイナリデータを半角文字列に変換する( 戻り値:変換後のデータサイズ )
330extern unsigned int BinToChar128( void *Src, unsigned int SrcSize, void *Dest )

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected