]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man3/getusershell.3
libc.7: Add a note on why glibc 2.x uses the soname libc.so.6
[thirdparty/man-pages.git] / man3 / getusershell.3
CommitLineData
fea681da
MK
1.\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
2.\"
93015253 3.\" %%%LICENSE_START(VERBATIM)
fea681da
MK
4.\" Permission is granted to make and distribute verbatim copies of this
5.\" manual provided the copyright notice and this permission notice are
6.\" preserved on all copies.
7.\"
8.\" Permission is granted to copy and distribute modified versions of this
9.\" manual under the conditions for verbatim copying, provided that the
10.\" entire resulting derived work is distributed under the terms of a
11.\" permission notice identical to this one.
c13182ef 12.\"
fea681da
MK
13.\" Since the Linux kernel and libraries are constantly changing, this
14.\" manual page may be incorrect or out-of-date. The author(s) assume no
15.\" responsibility for errors or omissions, or for damages resulting from
16.\" the use of the information contained herein. The author(s) may not
17.\" have taken the same level of care in the production of this manual,
18.\" which is licensed free of charge, as they might when working
19.\" professionally.
c13182ef 20.\"
fea681da
MK
21.\" Formatted or processed versions of this manual, if unaccompanied by
22.\" the source, must acknowledge the copyright and authors of this work.
4b72fb64 23.\" %%%LICENSE_END
fea681da
MK
24.\"
25.\" References consulted:
26.\" Linux libc source code
27.\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991)
28.\" 386BSD man pages
29.\" Modified Sat Jul 24 19:17:53 1993 by Rik Faith (faith@cs.unc.edu)
97986708 30.TH GETUSERSHELL 3 2016-03-15 "GNU" "Linux Programmer's Manual"
fea681da 31.SH NAME
e935e108 32getusershell, setusershell, endusershell \- get permitted user shells
fea681da
MK
33.SH SYNOPSIS
34.nf
35.B #include <unistd.h>
36.sp
37.B char *getusershell(void);
38.sp
39.B void setusershell(void);
40.sp
41.B void endusershell(void);
42.fi
cc4615cc
MK
43.sp
44.in -4n
45Feature Test Macro Requirements for glibc (see
46.BR feature_test_macros (7)):
47.in
48.sp
49.ad l
50.BR getusershell (),
51.BR setusershell (),
52.BR endusershell ():
2c767761 53.nf
d0544534
MK
54 Since glibc 2.21:
55.\" commit 266865c0e7b79d4196e2cc393693463f03c90bd8
56 _DEFAULT_SOURCE
57 In glibc 2.19 and 2.20:
58 _DEFAULT_SOURCE || (_XOPEN_SOURCE && _XOPEN_SOURCE\ <\ 500)
59 Up to and including glibc 2.19:
60 _BSD_SOURCE || (_XOPEN_SOURCE && _XOPEN_SOURCE\ <\ 500)
61.fi
cc4615cc 62.ad b
fea681da 63.SH DESCRIPTION
60a90ecd
MK
64The
65.BR getusershell ()
66function returns the next line from the file
509e2056
MK
67.IR /etc/shells ,
68opening the file if necessary.
c13182ef
MK
69The line should contain
70the pathname of a valid user shell.
509e2056
MK
71If
72.I /etc/shells
73does not exist or
60a90ecd
MK
74is unreadable,
75.BR getusershell ()
51700fd7 76behaves as if
509e2056
MK
77.I /bin/sh
78and
79.I /bin/csh
80were listed in the file.
fea681da 81.PP
60a90ecd
MK
82The
83.BR setusershell ()
509e2056
MK
84function rewinds
85.IR /etc/shells .
fea681da 86.PP
60a90ecd
MK
87The
88.BR endusershell ()
509e2056
MK
89function closes
90.IR /etc/shells .
47297adb 91.SH RETURN VALUE
60a90ecd
MK
92The
93.BR getusershell ()
b437fdd9 94function returns NULL on end-of-file.
fea681da
MK
95.SH FILES
96.nf
97/etc/shells
98.fi
7c51f0e3 99.SH ATTRIBUTES
81c0d2a4
MK
100For an explanation of the terms used in this section, see
101.BR attributes (7).
102.TS
103allbox;
104lbw31 lb lb
105l l l.
106Interface Attribute Value
107T{
7c51f0e3 108.BR getusershell (),
81c0d2a4
MK
109.BR setusershell (),
110.br
7c51f0e3 111.BR endusershell ()
81c0d2a4
MK
112T} Thread safety MT-Unsafe
113.TE
47297adb 114.SH CONFORMING TO
44a2c328 1154.3BSD.
47297adb 116.SH SEE ALSO
fea681da 117.BR shells (5)