|
EPICS Base
7.0.5.1
|
Command-line editing functions. More...
#include <libComAPI.h>#include <stdio.h>
Go to the source code of this file.
Functions | |
| LIBCOM_API void *epicsStdCall | epicsReadlineBegin (FILE *in) |
| Create a command-line context. More... | |
| LIBCOM_API char *epicsStdCall | epicsReadline (const char *prompt, void *context) |
| Read a line of input. More... | |
| LIBCOM_API void epicsStdCall | epicsReadlineEnd (void *context) |
| Destroy a command-line context. More... | |
Provides a generalized API for command line history and line-editing. The implementation of this API can call GNU Readline, libtecla, and on VxWorks the ledLib routines, according to the EPICS build configuration.
Definition in file epicsReadline.h.
| LIBCOM_API void* epicsStdCall epicsReadlineBegin | ( | FILE * | in | ) |
| in | Filehandle to read from |
| LIBCOM_API char* epicsStdCall epicsReadline | ( | const char * | prompt, |
| void * | context | ||
| ) |
| prompt | Prompt string |
| context | To read from |
| LIBCOM_API void epicsStdCall epicsReadlineEnd | ( | void * | context | ) |
| context | Command-line context to destroy |
1.8.13