#ifndef HAVE_ESPIK_H #define HAVE_ESPIK_H #include typedef struct { char* host; unsigned short port; } t_servinfo; typedef struct { char* nickname; char* username; char* realname; /* gecos */ } t_userinfo; typedef struct { t_servinfo* server; t_userinfo* client; } t_info; t_info a_infos; Ecore_List *ptr_list; void espik_free (void*); int del_backslash (char*); int main (int, char**); #endif /* HAVE_ESPIK_H */