minix/commands/yap/prompt.h

34 lines
506 B
C
Raw Normal View History

2005-04-21 16:53:53 +02:00
/* Copyright (c) 1985 Ceriel J.H. Jacobs */
/* $Header$ */
# ifndef _PROMPT_
# define PUBLIC extern
# else
# define PUBLIC
# endif
VOID give_prompt();
/*
* void give_prompt()
*
* Displays a prompt, with possibly an error message
*/
VOID error();
/*
* void error(s)
* char *s; The error
*
* Takes care that there will be an error message in the next prompt.
*/
VOID ret_to_continue();
/*
* void ret_to_continue();
*
* Asks the user to type something before continuing.
*/
# undef PUBLIC