/*
 * Copyright (C) 1993, 1994 by Ralf Baechle (linux@uni-koblenz.de)
 *
 * This file is part of Minix-Handler, an AmigaDOS Filehandler to access
 * Minix filesystems via AmigaDOS.
 *
 * Minix-Handler is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2, or (at your option)
 * any later version.
 *
 * Minix-Handler is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

#include <exec/execbase.h>
#include <exec/memory.h>
#include <intuition/intuitionbase.h>
#include <dos/filehandler.h>
#include <dos/dosextens.h>
#include <devices/trackdisk.h>

#include <stdarg.h>
#include <string.h>
#include <time.h>
#include <math.h>

#include <proto/exec.h>
#include <proto/dos.h>

#include "td.h"
#include "minix.h"
#include "dir.h"
#include "debug.h"

extern VOID ReadFromInode(UWORD ino, ULONG BlockNum, APTR Buffer);
extern BOOL WriteToInode(UWORD ino, ULONG BlockNum, APTR Buffer);
