/*
 *
 *  ALL03
 *
 *  26.07.2002
 *
 *  by Fabio Sturman
 *
 *  fabio.sturman@tiscali.it
 *
 *  all03ft.h
 *
 *  all03ft.c include file
 *
 */

/* Copyright (c) 2002 Fabio Sturman (fabio.sturman@tiscali.it)
 *
 *   This program 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 of the License, or
 *   (at your option) any later version.
 *
 *   This program 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.
 *
 *   You should have received a copy of the GNU General Public License
 *   along with this program; if not, write to the Free Software
 *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
 */

#ifndef ALL03FT_INCLUDE
#define ALL03FT_INCLUDE


void test(void);
int get_file_name(char *input_string, char *file_name);
void read_file_to_buf(
  char *input_string,
  char *file_name,
  unsigned char *buf,
  unsigned long buf_len,
  unsigned char fill);

void write_buf_to_file(
  char *input_string,
  char *file_name,
  unsigned char *buf,
  unsigned long buf_len);

void flush_out(void);
void enable_ctrl_c_break(void);
void disable_ctrl_c_break(void);
int test_if_timer(void);

#endif

