/* ------------------------------------------------------------------- */
/* 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 <stdlib.h>
#include <stdio.h>
#include <string.h>

int wfetch(char *url, char *filename)
{
  return 0;
}
