📄 getttynam.c
字号:
#ifndef lintstatic char *sccsid = "@(#)getttynam.c 4.1 (ULTRIX) 7/3/90";#endif lint/* @(#)getttynam.c 4.1 (Berkeley) 4/27/84 */#include "ttyent.h"struct ttyent *getttynam(tty) char *tty;{ register struct ttyent *t; setttyent(); while (t = getttyent()) { if (strcmp(tty, t->ty_name) == 0) break; } endttyent(); return (t);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -