// adv_io.c
// I/O ROUTINES (SPEAK, PSPEAK, RSPEAK, GETIN, YES, A5TOA1)
#ifndef ADV_IO_H
#define ADV_IO_H

#include <stdio.h>
#include <stdlib.h>
#include "adventur.h"
#include "adv_common.h"

// function prototypes
void speak(char *lyne);
void pspeak(int msg, int skip);
void rspeak(int i);
void mspeak(int i);
void getin(char *word1, char *word1x, char *word2, char *word2x);
BOOL yes(int x, int y, int z);
BOOL yesm(int x, int y, int z);
BOOL yesx(int x, int y, int z, void spk(int));
//      subroutine a5toa1(a,b,c,chars,leng);

#endif
