source: MondoRescue/branches/stable/mindi-busybox/shell/cmdedit.h@ 821

Last change on this file since 821 was 821, checked in by Bruno Cornec, 18 years ago

Addition of busybox 1.2.1 as a mindi-busybox new package
This should avoid delivering binary files in mindi not built there (Fedora and Debian are quite serious about that)

File size: 406 bytes
Line 
1#ifndef CMDEDIT_H
2#define CMDEDIT_H
3
4int cmdedit_read_input(char* promptStr, char* command);
5
6#ifdef CONFIG_ASH
7extern const char *cmdedit_path_lookup;
8#endif
9
10#ifdef CONFIG_FEATURE_COMMAND_SAVEHISTORY
11void load_history ( const char *fromfile );
12void save_history ( const char *tofile );
13#endif
14
15#if CONFIG_FEATURE_COMMAND_EDITING_VI
16void setvimode ( int viflag );
17#endif
18
19#endif /* CMDEDIT_H */
Note: See TracBrowser for help on using the repository browser.