#ifndef TOOLLIB_LINEPARSER_H #define TOOLLIB_LINEPARSER_H /* Copyright © 1995-2001, The AROS Development Team. All rights reserved. $Id: lineparser.h 12561 2001-10-30 20:02:33Z chodorowski $ Desc: Header for the simple line parser */ #ifndef TOOLLIB_TOOLLIB_H #include #endif extern char * get_line PARAMS((FILE *fd)); extern char *keyword PARAMS((char *line)); extern int get_words PARAMS((char *line, char ***outarray)); #endif /* TOOLLIB_LINEPARSER_H */