Google
 

Trailing-Edge - PDP-10 Archives - SRI_NIC_PERM_FS_1_19910112 - c/lib5/usys/sgtty.c
There are 5 other files named sgtty.c in the archive. Click here to see a list.
/*
 *	SGTTY
 *
 *	Copyright (C) 1987 by Ian Macky, SRI International
 */

#include "sgtty.h"

/*
 *	Get TTY characteristics
 */

gtty(fd, buf)
int fd;
struct sgttyb *buf;
{
    return ioctl(fd, TIOCGETP, buf);
}

/*
 *	Set TTY characteristics
 */

stty(fd, buf)
int fd;
struct sgttyb *buf;
{
    return ioctl(fd, TIOCSETP, buf);
}