2000-07-07 20:37:12 +00:00
|
|
|
#ifndef CMDEDIT_H
|
|
|
|
#define CMDEDIT_H
|
2000-04-12 17:49:52 +00:00
|
|
|
|
2001-03-13 22:57:56 +00:00
|
|
|
#ifdef BB_FEATURE_COMMAND_EDITING
|
2000-04-12 17:49:52 +00:00
|
|
|
#include <stddef.h>
|
2001-03-13 22:57:56 +00:00
|
|
|
#include "busybox.h"
|
2000-04-12 17:49:52 +00:00
|
|
|
|
2000-04-21 01:26:49 +00:00
|
|
|
void cmdedit_init(void);
|
2000-07-28 15:14:45 +00:00
|
|
|
void cmdedit_terminate(void);
|
2000-04-12 17:49:52 +00:00
|
|
|
void cmdedit_read_input(char* promptStr, char* command); /* read a line of input */
|
|
|
|
|
2001-03-13 22:57:56 +00:00
|
|
|
#endif /* BB_FEATURE_COMMAND_EDITING */
|
2000-03-16 08:09:57 +00:00
|
|
|
|
2000-07-07 20:37:12 +00:00
|
|
|
#endif /* CMDEDIT_H */
|