mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-03-21 17:55:13 -05:00
17 lines
237 B
C
17 lines
237 B
C
#ifndef POKEPLATINUM_CRYPTO_H
|
|
#define POKEPLATINUM_CRYPTO_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <crypto/rc4.h>
|
|
#include <crypto/sign.h>
|
|
#include <crypto/util.h>
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // POKEPLATINUM_CRYPTO_H
|