Home
Search all pages
Subjects
By activity
Professions, Sciences, Humanities, Business, ...
User Interface
Text-based, GUI, Audio, Video, Keyboards, Mouse, Images,...
Text Strings
Conversions, tests, processing, manipulation,...
Math
Integer, Floating point, Matrix, Statistics, Boolean, ...
Processing
Algorithms, Memory, Process control, Debugging, ...
Stored Data
Data storage, Integrity, Encryption, Compression, ...
Communications
Networks, protocols, Interprocess, Remote, Client Server, ...
Hard World Timing, Calendar and Clock, Audio, Video, Printer, Controls...
File System
Management, Filtering, File & Directory access, Viewers, ...
|
|
|
RocketLink!--> Man page versions:
OpenBSD
FreeBSD
RedHat
Solaris
Others
[IEEE Std1003.1-1988 (``POSIX'').]
CTERMID(3) OpenBSD Programmer's Manual CTERMID(3)
NAME
ctermid - generate terminal pathname
SYNOPSIS
#include <stdio.h>
char *
ctermid(char *buf);
DESCRIPTION
The ctermid() function generates a string, that, when used as a pathname,
refers to the current controlling terminal of the calling process.
If buf is a null pointer, a pointer to a static area is returned. Other-
wise, the pathname is copied into the memory referenced by buf. The argu-
ment buf is assumed to point to an array at least L_ctermid (as defined
in the include file <stdio.h>) bytes long.
The current implementation simply generates "/dev/tty".
RETURN VALUES
Upon successful completion, a non-null pointer is returned. Otherwise, a
null pointer is returned and the global variable errno is set to indicate
the error.
ERRORS
The current implementation detects no error conditions.
SEE ALSO
ttyname(3)
STANDARDS
The ctermid() function conforms to IEEE Std1003.1-1988 (``POSIX'').
BUGS
By default the ctermid() function writes all information to an internal
static object. Subsequent calls to ctermid() will modify the same ob-
ject.
OpenBSD 2.6 June 4, 1993 1
Source: OpenBSD 2.6 man pages. Copyright: Portions are copyrighted by BERKELEY SOFTWARE DESIGN, INC., The Regents of the University of California, Massachusetts Institute of Technology, Free Software Foundation, FreeBSD Inc., and others. |
(Corrections, notes, and links courtesy of RocketAware.com)
FreeBSD Sources for ctermid(3) functions OpenBSD sources for ctermid(3)
Up to: Terminal I/O - low-level character based display (TTY) and keyboard routines.
RocketLink!--> Man page versions:
OpenBSD
FreeBSD
RedHat
Solaris
Others
[IEEE Std1003.1-1988 (``POSIX'').]
Rapid-Links:
Search | About | Comments | Submit Path: RocketAware > man pages >
ctermid.3/
RocketAware.com is a service of Mib Software Copyright 1999, Forrest J. Cavalier III. All Rights Reserved. We welcome submissions and comments
|