xref: /titanic_41/usr/src/lib/libbc/libc/gen/common/getttynam.c (revision 8e50dcc9f00b393d43e6aa42b820bcbf1d3e1ce4)
1 #pragma ident	"%Z%%M%	%I%	%E% SMI"
2 	  /* from UCB 5.2 3/9/86 */
3 /*
4  * Copyright (c) 1983 Regents of the University of California.
5  * All rights reserved.  The Berkeley software License Agreement
6  * specifies the terms and conditions for redistribution.
7  */
8 
9 #include <ttyent.h>
10 
11 struct ttyent *
12 getttynam(tty)
13 	char *tty;
14 {
15 	register struct ttyent *t;
16 
17 	setttyent();
18 	while (t = getttyent()) {
19 		if (strcmp(tty, t->ty_name) == 0)
20 			break;
21 	}
22 	endttyent();
23 	return (t);
24 }
25