New module 'ttyname_r'.
[gnulib.git] / lib / ttyname_r.c
1 /* Determine name of a terminal.
2
3    Copyright (C) 2010 Free Software Foundation, Inc.
4
5    This program is free software: you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 3 of the License, or
8    (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
17
18 /* Written by Bruno Haible <bruno@clisp.org>, 2010.  */
19
20 #include <config.h>
21
22 #include <unistd.h>
23
24 #include <errno.h>
25 #include <string.h>
26
27 int
28 ttyname_r (int fd, char *buf, size_t buflen)
29 {
30 #if HAVE_TTYNAME
31   /* Note: This is not multithread-safe.  */
32   char *name;
33   size_t namelen;
34
35   name = ttyname (fd);
36   if (name == NULL)
37     return errno;
38   namelen = strlen (name) + 1;
39   if (namelen > buflen)
40     return ERANGE;
41   memcpy (buf, name, namelen);
42   return 0;
43 #else
44   /* Platforms like mingw: no ttys exist at all.  */
45   return ENOTTY;
46 #endif
47 }