// ask_yn.h #include "pretend_bool.h" extern bool ask_yn(const char promptstring[]); // MODIFIES: cout, cin // POST: cout has prompt added to it, and cin has a character read from it // and FCTVAL is true if either 'y' or 'Y' was read, and false otherwise.