mirror of
https://github.com/sheumann/hush.git
synced 2024-11-05 06:07:00 +00:00
14 lines
303 B
C
14 lines
303 B
C
#ifndef CMDEDIT_H
|
|
#define CMDEDIT_H
|
|
|
|
#ifdef BB_FEATURE_SH_COMMAND_EDITING
|
|
#include <stddef.h>
|
|
|
|
void cmdedit_init(void);
|
|
void cmdedit_terminate(void);
|
|
void cmdedit_read_input(char* promptStr, char* command); /* read a line of input */
|
|
|
|
#endif /* BB_FEATURE_SH_COMMAND_EDITING */
|
|
|
|
#endif /* CMDEDIT_H */
|