mirror of
https://github.com/sheumann/hush.git
synced 2024-11-05 06:07:00 +00:00
b3d6e2df95
echo "foo bar" and echo -n "foo\t\\\\\tbar" work as expected. Merge prompt printing work from Vladimir. -Erik
15 lines
318 B
C
15 lines
318 B
C
#ifndef CMDEDIT_H
|
|
#define CMDEDIT_H
|
|
|
|
#ifdef BB_FEATURE_COMMAND_EDITING
|
|
#include <stddef.h>
|
|
#include "busybox.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_COMMAND_EDITING */
|
|
|
|
#endif /* CMDEDIT_H */
|