configure: fix bug when one of libsexy/gtkspell is either found or desired
[rofl0r-ixchat.git] / src / common / url.h
blob487a20075545f7750357eb75b575cd5cc7688c84
1 #ifndef XCHAT_URL_H
2 #define XCHAT_URL_H
4 extern void *url_tree;
6 #define WORD_URL 1
7 #define WORD_NICK 2
8 #define WORD_CHANNEL 3
9 #define WORD_HOST 4
10 #define WORD_EMAIL 5
11 #define WORD_DIALOG -1
13 void url_clear (void);
14 void url_save (const char *fname, const char *mode, gboolean fullpath);
15 void url_autosave (void);
16 int url_check_word (char *word, int len);
17 void url_check_line (char *buf, int len);
19 #endif