350d26bbbb
config system - added a new config option to allow persistant history lists. This is currently only used by ash, but the calls ({load,save}_history) could be added to the other shells as well.
10 lines
202 B
C
10 lines
202 B
C
#ifndef CMDEDIT_H
|
|
#define CMDEDIT_H
|
|
|
|
int cmdedit_read_input(char* promptStr, char* command);
|
|
|
|
void load_history ( char *fromfile );
|
|
void save_history ( char *tofile );
|
|
|
|
#endif /* CMDEDIT_H */
|