![]() |
![]()
| ![]() |
![]()
NAMElibtecla - An interactive command-line input library. SYNOPSIScc ... -ltecla -lcurses DESCRIPTIONThe tecla library provides programs with interactive command line editing facilities, similar to those of the unix tcsh shell. In addition to simple command-line editing, it supports recall of previously entered command lines, TAB completion of file names or other tokens, and in-line wild-card expansion of filenames. The internal functions which perform file-name completion and wild-card expansion are also available externally for optional use by the calling program. The various parts of the library are documented in the following man pages:
In addition there is one optional application distributed with the library:
THREAD SAFETYIf the library is compiled with -D_POSIX_C_SOURCE=199506L, reentrant versions of as many functions as possible are used. This includes using getpwuid_r() and getpwnam_r() instead of getpwuid() and getpwnam() when looking up the home directories of specific users in the password file (for ~user/ expansion), and readdir_r() instead of readdir() for reading directory entries when doing filename completion. The reentrant version of the library is usually called libtecla_r.a instead of libtecla.a, so if only the latter is available, it probably isn't the correct version to link with threaded programs. Reentrant functions for iterating through the password file aren't available, so when the library is compiled to be reentrant, TAB completion of incomplete usernames in ~username/ expressions is disabled. This doesn't disable expansion of complete ~username expressions, which can be done reentrantly, or expansion of the parts of filenames that follow them, so this doesn't remove much functionality. The terminfo functions setupterm(), tigetstr(), tigetnum() and tputs() also aren't reentrant, but very few programs will want to interact with multiple terminals, so this shouldn't prevent this library from being used in threaded programs. LIBRARY VERSION NUMBERThe version number of the library can be queried using the following function.
On return, this function records the three components of the libtecla version number in *major, *minor, *micro. The formal meaning of the three components is as follows.
TRIVIAIn Spanish, a "tecla" is the key of a keyboard. Since this library centers on keyboard input, and given that I wrote much of the library while working in Chile, this seemed like a suitable name. FILESlibtecla.a - The tecla library. libtecla.h - The tecla header file. ~/.teclarc - The tecla personal customization file. SEE ALSOgl_get_line(3), tecla(7), gl_io_mode(3), ef_expand_file(3), cpl_complete_word(3), pca_lookup_file(3), enhance(1) AUTHORMartin Shepherd (mcs@astro.caltech.edu) ACKNOWLEDGMENTSMarkus Gyger - Lots of assistance, including help with
|