The board is a "creature" of my struct:
typedef struct{
int status;
char classe;
int saude;
int def;
int atc;
char elixir;
}criatura;
No .h:
void exibe(criatura tabuleiro[5][10]); // exibe o tabuleiro
The call in .c with the functions:
criatura tabuleiro[5][10]; // declarei aqui
// entraram alguns códigos aqui
exibe(criatura tabuleiro); // chamei a função aqui
The function:
void exibe(criatura tabuleiro[5][10]){
int i,j;
for(i=0;i<10;i++){
if(i==0){
printf(" 1");
}
if(i==1){
printf(" 2");
} ............................. (apenas um tabuleiro)
But for some reason I get the error:
In function 'tabuleiro':
[Error] expected expression before 'criatura'
C:\Users\...\dfv2\Makefile.win recipe for target 'funcoes.o' failed
If someone knows what's going wrong, thank you! A hug!