aboutsummaryrefslogtreecommitdiff
path: root/src/espik.h
blob: 2c4f84d4d3b0eddc48abe5a5355893a4c177a47e (plain) (blame)
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	HAVE_ESPIK_H
#define	HAVE_ESPIK_H

#include <Ecore_Data.h>

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 */