データを簡易暗号化してファイルに書き出す関数
| 313 | |
| 314 | // データを簡易暗号化してファイルに書き出す関数 |
| 315 | extern void EasyEncodeFileWrite( void *Data, int Size, FILE *fp ) |
| 316 | { |
| 317 | EasyEncode( Data, Size ) ; |
| 318 | fwrite( Data, Size, 1, fp ) ; |
| 319 | EasyEncode( Data, Size ) ; |
| 320 | } |
| 321 | |
| 322 | // データを簡易暗号化してファイルから読み込む関数 |
| 323 | extern void EasyEncodeFileRead( void *Data, int Size, FILE *fp ) |
nothing calls this directly
no outgoing calls
no test coverage detected