1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-06-26 04:26:38 +02:00
Files
unrealircd/include/url.h
T
2003-12-17 19:19:10 +00:00

12 lines
235 B
C

#ifndef URL_H
#define URL_H
int url_is_valid(char *);
char *url_getfilename(char *);
char *download_file(char *, char **);
void download_file_async(char *, time_t, vFP);
void url_do_transfers_async(void);
void url_init(void);
#endif