/* Part of DoorLib v1.12

   Name   : ftp
   Version: 1.12
   Date   : Saturday, 1st June 1996

   Purpose: DoorLib's file transfer protocol functions.
            >>> NOT CURRENTLY IMPLEMENTED! <<<

   Creator: Richard Murray
*/

#include <stdio.h>
#include <stdlib.h>

#include "ctype.h"
#include "kernel.h"
#include "stdarg.h"
#include "strings.h"
#include "time.h"

#include "doorlib.h"


int doors_xmodem1tx(char *bs_filepath, char *bs_filename)
/* Send a file through the door interface with Xmodem1K protocol. */
{
   /* Do nothing */
   return -1;
}

int doors_xmodem1rx(char *bs_file)
/* Receive a file through the door interface with Xmodem1K protocol. */
{
   /* Do nothing */
   return -1;
}


void doors_includeX2(void)
{
   printf("BUDGIESOFT DOORLIB :: FTP");
}
