Ciao quando includo un file header fatto da me è come se non me lo vedesse
Posto il codice per capirci meglio
File header
#ifndef RUBRICA_H
#define RUBRICA_H
#define SIZE_NAME 20
#define SIZE_BIRTH 11
typedef struct
{
char name[SIZE_NAME];
char surname[SIZE_NAME];
char birthday[SIZE_BIRTH];
}Contatto;
typedef struct
{
Contatto informazioni;
struct Rubrica *nextPtr;
}Rubrica;
typedef Rubrica *RubricaPtr;
void insert(const char *nome,const char *cognome,const char *compleanno);//Insert Person in the Rubrica
void deleteList(const char *nome,const char *cognome,const char *compleanno);//Delete Person from the Rubrica
void modify(const char *nome,const char *cognome,const char *compleanno);//Modifica la rubrica
int isEmpty(RubricaPtr sPtr);
void print(void);//Print rubrica
int rubrica();//GESTISCE IL PROGRAMMA
#endif /* RUBRICA_H */
file header con la presenza dell'altro
#include "rubrica.h"
int newContact(const char *name,const char *surname,const char *birthday,Rubrica *contact);