|
telldir(3) -- return current location in directory stream.
|
The telldir() function returns the current location associated with the directory stream dir. |
tempnam(3) -- create a name for a temporary file
|
The tempnam() function returns a pointer to a string that is a valid filename, and such that a file with this name did not exist when temp- nam() checked. The filename suffix of the pathname generated... |
termios(3) -- get and set terminal attributes, line control, get and set baud rate, get and set terminal foregroun...
|
The termios functions describe a general terminal interface that is provided to control asynchronous communications ports. Many of the functions described here have a termios_p argument that is a poin... |
textdomain(3) -- set domain for future gettext() calls
|
The textdomain function sets or retrieves the current message domain. A message domain is a set of translatable msgid messages. Usually, every software package has its own message domain. The domain n... |
tile(3) -- Tiling versions of Tk widgets
|
The tile widgets let you create textured backgrounds. The texture is a Tk image which is tiled over the entire background of the widget. |
tktable(3) -- Create and manipulate tables
|
The table command creates a 2-dimensional grid of cells. The table can use a Tcl array variable or Tcl command for data storage and retrieval. The widget has an active cell, the contents of which can ... |
tmpfile(3) -- create a temporary file
|
The tmpfile() function generates a unique temporary filename using the path prefix P_tmpdir defined in . The temporary file is then opened in binary read/write (w+b) mode. The file will be au... |
tmpnam(3) -- create a name for a temporary file
|
The tmpnam() function returns a pointer to a string that is a valid filename, and such that a file with this name did not exist at some point in time, so that naive programmers may think it a suitable... |
toascii(3) -- convert character to ASCII
|
toascii() converts c to a 7-bit unsigned char value that fits into the ASCII character set, by clearing the high-order bits. |
toupper(3) -- convert letter to upper or lower case
|
toupper() converts the letter c to upper case, if possible. tolower() converts the letter c to lower case, if possible. If c is not an unsigned char value, or EOF, the behaviour of these functions is ... |
towctrans(3) -- wide-character transliteration
|
If wc is a wide character, the towctrans function translates it according to the transliteration descriptor desc. If wc is WEOF, WEOF is returned. desc must be a transliteration descriptor returned by... |
towlower(3) -- convert a wide character to lowercase
|
The towlower function is the wide-character equivalent of the tolower function. If wc is a wide character, it is converted to lowercase. Characters which do not have case are returned unchanged. If wc... |
towupper(3) -- convert a wide character to uppercase
|
The towupper function is the wide-character equivalent of the toupper function. If wc is a wide character, it is converted to uppercase. Characters which do not have case are returned unchanged. If wc... |