build-many-glibcs.py: Add openrisc hard float glibc variant
[glibc.git] / termios / speed.c
blobc9842e1d422900a8e9d14714b14363d9756d4044
1 /* `struct termios' speed frobnication functions. 4.4 BSD/generic GNU version.
2 Copyright (C) 1991-2024 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
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.
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
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
19 #include <stddef.h>
20 #include <errno.h>
21 #include <termios.h>
23 /* Return the output baud rate stored in *TERMIOS_P. */
24 speed_t
25 cfgetospeed (const struct termios *termios_p)
27 return termios_p->__ospeed;
30 /* Return the input baud rate stored in *TERMIOS_P. */
31 speed_t
32 cfgetispeed (const struct termios *termios_p)
34 return termios_p->__ispeed;
37 /* Set the output baud rate stored in *TERMIOS_P to SPEED. */
38 int
39 cfsetospeed (struct termios *termios_p, speed_t speed)
41 if (termios_p == NULL)
43 __set_errno (EINVAL);
44 return -1;
47 termios_p->__ospeed = speed;
48 return 0;
50 libc_hidden_def (cfsetospeed)
52 /* Set the input baud rate stored in *TERMIOS_P to SPEED. */
53 int
54 cfsetispeed (struct termios *termios_p, speed_t speed)
56 if (termios_p == NULL)
58 __set_errno (EINVAL);
59 return -1;
62 termios_p->__ispeed = speed;
63 return 0;
65 libc_hidden_def (cfsetispeed)