Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cmdedit.h - git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b96ffd37327bb73a909d8c140af8b6ebc06d7508 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#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 */