1 #ifndef	INC_EIF_GETCOM_H
2 #define	INC_EIF_GETCOM_H
3 
4 void	cmd_exec(const char *buf, int sub);
5 void	cmd_if(const char *buf, int sub);
6 
7 int	get_input(char *retbuf, int len, const char *prompt);
8 int	get_main_input(char *retbuf, int len, const char *prompt);
9 int	unescape_backslashes(char *dst, const char *src);
10 
11 #endif	/* INC_EIF_GETCOM_H */
12 
13 /* vim:ts=8:ai:sw=8:syntax=c
14  */
15