#include <safe-c.h>

void main(void)
{
  string_type s;
  boolean_type done;

  put_string("Welcome to STAMMER...\n");
  put_string("Please enter a line:\n");

  done = FALSE;
  while (!done)
  {
    get_string(s);
    put_string(s);
    done = string_equal(s, "quit\n");
  }

  put_string("Bye Bye from STAMMER...\n");
}
