Blame man3/ctermid.3

Packit 7cfc04
.\" Copyright (c) 1993 by Thomas Koenig (ig25@rz.uni-karlsruhe.de)
Packit 7cfc04
.\"
Packit 7cfc04
.\" %%%LICENSE_START(VERBATIM)
Packit 7cfc04
.\" Permission is granted to make and distribute verbatim copies of this
Packit 7cfc04
.\" manual provided the copyright notice and this permission notice are
Packit 7cfc04
.\" preserved on all copies.
Packit 7cfc04
.\"
Packit 7cfc04
.\" Permission is granted to copy and distribute modified versions of this
Packit 7cfc04
.\" manual under the conditions for verbatim copying, provided that the
Packit 7cfc04
.\" entire resulting derived work is distributed under the terms of a
Packit 7cfc04
.\" permission notice identical to this one.
Packit 7cfc04
.\"
Packit 7cfc04
.\" Since the Linux kernel and libraries are constantly changing, this
Packit 7cfc04
.\" manual page may be incorrect or out-of-date.  The author(s) assume no
Packit 7cfc04
.\" responsibility for errors or omissions, or for damages resulting from
Packit 7cfc04
.\" the use of the information contained herein.  The author(s) may not
Packit 7cfc04
.\" have taken the same level of care in the production of this manual,
Packit 7cfc04
.\" which is licensed free of charge, as they might when working
Packit 7cfc04
.\" professionally.
Packit 7cfc04
.\"
Packit 7cfc04
.\" Formatted or processed versions of this manual, if unaccompanied by
Packit 7cfc04
.\" the source, must acknowledge the copyright and authors of this work.
Packit 7cfc04
.\" %%%LICENSE_END
Packit 7cfc04
.\"
Packit 7cfc04
.\" Modified Sat Jul 24 19:51:06 1993 by Rik Faith (faith@cs.unc.edu)
Packit 7cfc04
.TH CTERMID 3  2016-03-15 "GNU" "Linux Programmer's Manual"
Packit 7cfc04
.SH NAME
Packit 7cfc04
ctermid \- get controlling terminal name
Packit 7cfc04
.SH SYNOPSIS
Packit 7cfc04
.nf
Packit 7cfc04
.B #include <stdio.h>
Packit 7cfc04
.\" POSIX also requires this function to be declared in <unistd.h>,
Packit 7cfc04
.\" and glibc does so if suitable feature test macros are defined.
Packit 7cfc04
.PP
Packit 7cfc04
.BI "char *ctermid(char *" "s" );
Packit 7cfc04
.fi
Packit 7cfc04
.PP
Packit 7cfc04
.in -4n
Packit 7cfc04
Feature Test Macro Requirements for glibc (see
Packit 7cfc04
.BR feature_test_macros (7)):
Packit 7cfc04
.in
Packit 7cfc04
.PP
Packit 7cfc04
.BR ctermid ():
Packit 7cfc04
_POSIX_C_SOURCE
Packit 7cfc04
.SH DESCRIPTION
Packit 7cfc04
.BR ctermid ()
Packit 7cfc04
returns a string which is the pathname for the current
Packit 7cfc04
controlling terminal for this process.
Packit 7cfc04
If
Packit 7cfc04
.I s
Packit 7cfc04
is NULL,
Packit 7cfc04
a static buffer is used, otherwise
Packit 7cfc04
.I s
Packit 7cfc04
points to a buffer used to hold the terminal pathname.
Packit 7cfc04
The symbolic constant
Packit 7cfc04
.B L_ctermid
Packit 7cfc04
is the maximum number of characters in the returned pathname.
Packit 7cfc04
.SH RETURN VALUE
Packit 7cfc04
The pointer to the pathname.
Packit 7cfc04
.SH ATTRIBUTES
Packit 7cfc04
For an explanation of the terms used in this section, see
Packit 7cfc04
.BR attributes (7).
Packit 7cfc04
.TS
Packit 7cfc04
allbox;
Packit 7cfc04
lb lb lb
Packit 7cfc04
l l l.
Packit 7cfc04
Interface	Attribute	Value
Packit 7cfc04
T{
Packit 7cfc04
.BR ctermid ()
Packit 7cfc04
T}	Thread safety	MT-Safe
Packit 7cfc04
.TE
Packit 7cfc04
.SH CONFORMING TO
Packit 7cfc04
POSIX.1-2001, POSIX.1-2008, Svr4.
Packit 7cfc04
.SH BUGS
Packit 7cfc04
The path returned may not uniquely identify the controlling
Packit 7cfc04
terminal; it may, for example, be
Packit 7cfc04
.IR /dev/tty .
Packit 7cfc04
.PP
Packit 7cfc04
It is not assured that the program can open the terminal.
Packit 7cfc04
.\" in glibc 2.3.x, x >= 4, the glibc headers threw an error
Packit 7cfc04
.\" if ctermid() was given an argument; fixed in 2.4.
Packit 7cfc04
.SH SEE ALSO
Packit 7cfc04
.BR ttyname (3)
Packit 7cfc04
.SH COLOPHON
Packit 7cfc04
This page is part of release 4.15 of the Linux
Packit 7cfc04
.I man-pages
Packit 7cfc04
project.
Packit 7cfc04
A description of the project,
Packit 7cfc04
information about reporting bugs,
Packit 7cfc04
and the latest version of this page,
Packit 7cfc04
can be found at
Packit 7cfc04
\%https://www.kernel.org/doc/man\-pages/.