17777dab0Sopenharmony_ci#ifndef _PTY_H 27777dab0Sopenharmony_ci#define _PTY_H 37777dab0Sopenharmony_ci 47777dab0Sopenharmony_ci#ifdef __cplusplus 57777dab0Sopenharmony_ciextern "C" { 67777dab0Sopenharmony_ci#endif 77777dab0Sopenharmony_ci 87777dab0Sopenharmony_ci#include <termios.h> 97777dab0Sopenharmony_ci#include <sys/ioctl.h> 107777dab0Sopenharmony_ci 117777dab0Sopenharmony_ciint openpty(int *, int *, char *, const struct termios *, const struct winsize *); 127777dab0Sopenharmony_ciint forkpty(int *, char *, const struct termios *, const struct winsize *); 137777dab0Sopenharmony_ci 147777dab0Sopenharmony_ci#ifdef __cplusplus 157777dab0Sopenharmony_ci} 167777dab0Sopenharmony_ci#endif 177777dab0Sopenharmony_ci 187777dab0Sopenharmony_ci#endif 19