source: trunk/minix/commands/yap/prompt.h@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 586 bytes
RevLine 
[9]1/* Copyright (c) 1985 Ceriel J.H. Jacobs */
2
3/* $Header: /cvsup/minix/src/commands/yap/prompt.h,v 1.1.1.1 2005/04/21 14:55:41 beng Exp $ */
4
5# ifndef _PROMPT_
6# define PUBLIC extern
7# else
8# define PUBLIC
9# endif
10
11VOID give_prompt();
12/*
13 * void give_prompt()
14 *
15 * Displays a prompt, with possibly an error message
16 */
17
18VOID error();
19/*
20 * void error(s)
21 * char *s; The error
22 *
23 * Takes care that there will be an error message in the next prompt.
24 */
25
26VOID ret_to_continue();
27/*
28 * void ret_to_continue();
29 *
30 * Asks the user to type something before continuing.
31 */
32
33# undef PUBLIC
Note: See TracBrowser for help on using the repository browser.