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