#ifndef PTY_OUTFIFO_H
#define PTY_OUTFIFO_H

#include <wchar.h>
#include <glib.h>
#include "unix.h"

extern GMainLoop *mainloop;
extern GIOChannel *pty_channel;

extern struct pty *pty;


void stuff_buf(struct pty *pty, char *buf, int len);
void send_string(struct pty *pty, char *s);
void send_wchar(struct pty * pty, wchar_t ch);

#endif


