Gut and rebuild YES() with cleaner approach that doesn't rely on packing.

The new support functions get_input() and echo_input() (and others not made yet) will eventually replace GETIN() and MAPLIN().
This commit is contained in:
Jason S. Ninneman 2017-06-18 13:37:51 -07:00
parent 0dd961701f
commit 550734fd3f
6 changed files with 116 additions and 25 deletions

View file

@ -83,6 +83,7 @@ extern bool oldstyle, editline, prompt;
/* b is not needed for POSIX but harmless */
#define READ_MODE "rb"
#define WRITE_MODE "wb"
extern void* xmalloc(size_t size);
extern char* xstrdup(const char*);
extern void packed_to_token(long, char token[]);
extern void speak(const char*);
@ -90,7 +91,9 @@ extern void PSPEAK(vocab_t,int);
extern void RSPEAK(vocab_t);
extern void SETPRM(long,long,long);
extern bool GETIN(FILE *,token_t*,token_t*,token_t*,token_t*);
extern long YES(FILE *,vocab_t,vocab_t,vocab_t);
extern void echo_input(FILE*, char*, char*);
extern char* get_input(void);
extern bool YES(vocab_t, vocab_t, vocab_t);
extern long GETTXT(bool,bool,bool);
extern token_t MAKEWD(long);
extern long VOCAB(long,long);