summaryrefslogtreecommitdiff
path: root/release/src/router/busybox/shell/cmdedit.h
blob: 991dafcd1ded39ed2ef2cbb3570902ac3e7c83aa (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef CMDEDIT_H
#define CMDEDIT_H

int     cmdedit_read_input(char* promptStr, char* command);

#ifdef CONFIG_FEATURE_COMMAND_SAVEHISTORY
void    load_history ( const char *fromfile );
void    save_history ( const char *tofile );
#endif

#endif /* CMDEDIT_H */