diff options
author | beber <beber> | 2005-08-22 18:39:41 +0000 |
---|---|---|
committer | beber <beber> | 2005-08-22 18:39:41 +0000 |
commit | 759cc5ec91cdffe47cb5dee8f6e5134c8501e579 (patch) | |
tree | 69fe44e0fc2c783e1678058f77e611a3d2643646 /src/espik.h | |
parent | Some jobs on irc commands (diff) | |
download | espik-759cc5ec91cdffe47cb5dee8f6e5134c8501e579.tar.xz |
Some work too
Del struct.h, move contents to espik.h
Diffstat (limited to 'src/espik.h')
-rw-r--r-- | src/espik.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/espik.h b/src/espik.h new file mode 100644 index 0000000..e8fad1c --- /dev/null +++ b/src/espik.h @@ -0,0 +1,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 */ |