aboutsummaryrefslogtreecommitdiff
path: root/src/espik.h
blob: e8fad1c4b3179e5793195e4b8cfba7cfc1fb7765 (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
#ifndef	_HAVE_ESPIK_H
#define	_HAVE_ESPIK_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;

int                     del_backslash (char *);
int                     main (int, char **);

#endif /* _HAVE_ESPIK_H */