1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-06-26 16:36:38 +02:00
Files
Bram Matthys 8ea0ac5f4c RC1
2004-02-14 20:23:42 +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