aboutsummaryrefslogtreecommitdiff
path: root/prompt.h
diff options
context:
space:
mode:
Diffstat (limited to 'prompt.h')
-rw-r--r--prompt.h19
1 files changed, 10 insertions, 9 deletions
diff --git a/prompt.h b/prompt.h
index 4734ae11b954..08810e22a0cb 100644
--- a/prompt.h
+++ b/prompt.h
@@ -1,4 +1,4 @@
-/* $NetBSD: prompt.h,v 1.2 1997/01/11 06:48:05 lukem Exp $ */
+/* $NetBSD: prompt.h,v 1.5 2000/09/04 22:06:31 lukem Exp $ */
/*-
* Copyright (c) 1992, 1993
@@ -42,20 +42,21 @@
* el.prompt.h: Prompt printing stuff
*/
#ifndef _h_el_prompt
-#define _h_el_prompt
+#define _h_el_prompt
#include "histedit.h"
-typedef char * (*el_pfunc_t) __P((EditLine*));
+typedef char * (*el_pfunc_t)(EditLine*);
typedef struct el_prompt_t {
- el_pfunc_t p_func; /* Function to return the prompt */
- coord_t p_pos; /* position in the line after prompt */
+ el_pfunc_t p_func; /* Function to return the prompt */
+ coord_t p_pos; /* position in the line after prompt */
} el_prompt_t;
-protected void prompt_print __P((EditLine *));
-protected int prompt_set __P((EditLine *, el_pfunc_t));
-protected int prompt_init __P((EditLine *));
-protected void prompt_end __P((EditLine *));
+protected void prompt_print(EditLine *, int);
+protected int prompt_set(EditLine *, el_pfunc_t, int);
+protected int prompt_get(EditLine *, el_pfunc_t *, int);
+protected int prompt_init(EditLine *);
+protected void prompt_end(EditLine *);
#endif /* _h_el_prompt */