-
Notifications
You must be signed in to change notification settings - Fork 0
/
pokedex.h
32 lines (27 loc) · 926 Bytes
/
pokedex.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#ifndef POKEDEX_H
#define POKEDEX_H
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "global.h"
#include "colecao.h"
#include "arquivo.h"
/**
* @file pokedex.h
* @author Kauane dos Santos Vieira
* @author Estefane Santos de Lima
* @author Kauane dos Santos Vieira
* @author Isabelle Rosvadoski Nofre
*
* @date 03 Nov 2023
* @brief Contém os cabeçalhos das funções criadas em pokedex.h e todas as bibliotecas utilizadas para executar esse arquivo
*
* Contém os cabeçalhos da funções usadas para gerenciar a Pokedex.
* Roda apenas no Windows
*/
void pesquisarPokemonTipo(Colecao* colecao, int* qtdPokemons);
void pesquisarPokemonGeracao(Colecao* colecao, int* qtdPokemons);
void inserirPokemonPokedex(Colecao* colecao, int* qtdPokemons);
void excluirPokemonPokedex(Colecao* colecao, int* qtdPokemons);
void alterarPokemon(Colecao* colecao, Mochila* mochila, int qtdPokemons);
#endif