mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-03-12 17:55:41 +08:00
11 lines
247 B
C
11 lines
247 B
C
|
#ifndef VP_PTYTTY_H_
|
||
|
#define VP_PTYTTY_H_
|
||
|
|
||
|
#include <termios.h>
|
||
|
|
||
|
int openpty(int *, int *, char *, struct termios *, struct winsize *);
|
||
|
int forkpty(int *, char *, struct termios *, struct winsize *);
|
||
|
int login_tty(int);
|
||
|
|
||
|
#endif /* VP_PTYTTY_H_ */
|