repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
isblank() implementation.
[minix.git]
/
lib
/
libc
/
posix
/
_cfgetispeed.c
blob
7bdaa63b60831c3dab30ace2d91a41d94437e5cf
1
/*
2
posix/_cfgetispeed
3
4
Created: June 11, 1993 by Philip Homburg
5
*/
6
7
#include <termios.h>
8
9
speed_t
_cfgetispeed
(
const struct
termios
*
termios_p
)
10
{
11
return
termios_p
->
c_ispeed
;
12
}