mirror of
https://github.com/naehrwert/scetool.git
synced 2025-04-19 18:06:50 +00:00
15 lines
276 B
C
15 lines
276 B
C
![]() |
/*
|
||
|
* Copyright (c) 2011-2013 by naehrwert
|
||
|
* This file is released under the GPLv2.
|
||
|
*/
|
||
|
|
||
|
|
||
|
#ifndef _FRONTEND_H_
|
||
|
#define _FRONTEND_H_
|
||
|
|
||
|
void frontend_print_infos(s8 *file);
|
||
|
void frontend_decrypt(s8 *file_in, s8 *file_out);
|
||
|
void frontend_encrypt(s8 *file_in, s8 *file_out);
|
||
|
|
||
|
#endif
|