blob: 0cf6165be91fd8b80148a97fca11a126e68158e6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* Copyright (C) 2017 hatkirby
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
*/
#ifndef ENCODING_H_95547384
#define ENCODING_H_95547384
#include <gccore.h>
#include "pokemon.h"
void decodePokemonCharset(
const u8* input,
int maxLength,
char* output,
enum PokemonLanguage language);
#endif /* end of include guard: ENCODING_H_95547384 */
|