]> git.ipfire.org Git - thirdparty/glibc.git/blame - termios/speed.c
nscd: Typo inside comment in netgroup cache
[thirdparty/glibc.git] / termios / speed.c
CommitLineData
28f540f4 1/* `struct termios' speed frobnication functions. 4.4 BSD/generic GNU version.
dff8da6b 2 Copyright (C) 1991-2024 Free Software Foundation, Inc.
df4ef2ab 3 This file is part of the GNU C Library.
28f540f4 4
df4ef2ab 5 The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
28f540f4 9
df4ef2ab
UD
10 The GNU C Library 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 GNU
41bdb6e2 13 Lesser General Public License for more details.
28f540f4 14
41bdb6e2 15 You should have received a copy of the GNU Lesser General Public
59ba27a6 16 License along with the GNU C Library; if not, see
5a82c748 17 <https://www.gnu.org/licenses/>. */
28f540f4 18
28f540f4
RM
19#include <stddef.h>
20#include <errno.h>
21#include <termios.h>
22
23/* Return the output baud rate stored in *TERMIOS_P. */
24speed_t
9d46370c 25cfgetospeed (const struct termios *termios_p)
28f540f4
RM
26{
27 return termios_p->__ospeed;
28}
29
30/* Return the input baud rate stored in *TERMIOS_P. */
31speed_t
9d46370c 32cfgetispeed (const struct termios *termios_p)
28f540f4
RM
33{
34 return termios_p->__ispeed;
35}
36
37/* Set the output baud rate stored in *TERMIOS_P to SPEED. */
38int
9d46370c 39cfsetospeed (struct termios *termios_p, speed_t speed)
28f540f4
RM
40{
41 if (termios_p == NULL)
42 {
c4029823 43 __set_errno (EINVAL);
28f540f4
RM
44 return -1;
45 }
46
47 termios_p->__ospeed = speed;
48 return 0;
49}
df962917 50libc_hidden_def (cfsetospeed)
28f540f4
RM
51
52/* Set the input baud rate stored in *TERMIOS_P to SPEED. */
53int
9d46370c 54cfsetispeed (struct termios *termios_p, speed_t speed)
28f540f4
RM
55{
56 if (termios_p == NULL)
57 {
c4029823 58 __set_errno (EINVAL);
28f540f4
RM
59 return -1;
60 }
61
62 termios_p->__ispeed = speed;
63 return 0;
64}
df962917 65libc_hidden_def (cfsetispeed)