#ifndef _hey_format_h_ #define _hey_format_h_ /* ** File: hey_format.h ** Desc: Reading & formatting functions for 'hey' ** Auth: Cian Synnott ** Date: Sun Nov 15 19:49:44 GMT 1998 ** ** $Id: hey_format.h,v 1.2 2001/12/30 23:26:06 c-hey Exp $ */ #include "dyn_page.h" #include "hey_arg.h" /* Buffer to keep things in */ extern dyn_page *hey_page; /* Read user input into hey_page, also allocates it & suchlike */ extern void hey_user_input(void); /* Formats the lines present in hey_page into the 'hey' to be sent */ extern void hey_format_input(void); #endif