|
Last change
on this file since 2334 was 821, checked in by Bruno Cornec, 19 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 |
|
|---|
| 4 | int cmdedit_read_input(char* promptStr, char* command);
|
|---|
| 5 |
|
|---|
| 6 | #ifdef CONFIG_ASH
|
|---|
| 7 | extern const char *cmdedit_path_lookup;
|
|---|
| 8 | #endif
|
|---|
| 9 |
|
|---|
| 10 | #ifdef CONFIG_FEATURE_COMMAND_SAVEHISTORY
|
|---|
| 11 | void load_history ( const char *fromfile );
|
|---|
| 12 | void save_history ( const char *tofile );
|
|---|
| 13 | #endif
|
|---|
| 14 |
|
|---|
| 15 | #if CONFIG_FEATURE_COMMAND_EDITING_VI
|
|---|
| 16 | void setvimode ( int viflag );
|
|---|
| 17 | #endif
|
|---|
| 18 |
|
|---|
| 19 | #endif /* CMDEDIT_H */
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.