I have this simple code of a Header File and I get an error when defining this:
typedef char Cadena[N];
and my code is this:
/* cadenas.h */
#ifndef CADENAS_H_
#define CADENAS_H_
#include <stdio.h>
#include <string.h>
#define N 129;
typedef enum{FALSO,CIERTO} Logico;
typedef char Cadena[N];
int buscaCaracter(const Cadena cad,char c);
Logico esPalindromo(const Cadena cad);
#endif /* CADENAS_H_ */
I'm a beginner in C, and it's a pretty simple code but I do not know why defining the type char gives me syntax error.