/* ------------------------------------------------------------------- */ /* wfetch : Fetch a remote file using the htget() "HTTP client" */ /* */ /* syntax : wfatch(char *url, char *filename) */ /* */ /* Returns : 0 ALWAYS! */ /* */ /* Author : Ole Husby, BIBSYS */ /* Updated : 1998-10-04 */ /* ------------------------------------------------------------------- */ #include #include #include int wfetch(char *url, char *filename) { return 0; }