
   libfizmo aims to provide a Z-Machine interpreter core library in plain C.
   The goal is to have an interpreter library with as little dependencies as
   possible to allow for easy portability. In order to use it stand-alone,
   you have to invoke the "fizmo_start" function in "src/interpreter/fizmo.c"
   with a screen interface. Check fizmo-console for an example.

   Currently the interpreter is in beta status, which means it seems to run
   all non-version-6 games quite well without any known bugs.

   Dependencies:       
    - libxml2 for parsing of .ifiction files (optional)

   Please send bug reports (or other requests) to fizmo@spellbreaker.org.

   libfizmo was written by Christoph Ender in 2005-2015.

   For the latest version, see http://spellbreaker.org/~chrender/fizmo/.

   libfizmo uses the Mersenne twister from http://www.math.sci.hiroshima-
   u.ac.jp/~m-mat/MT/MT2002/emt19937ar.html as a random number generator
   implementation:
   "A C-program for MT19937, with initialization improved 2002/1/26.
   Coded by Takuji Nishimura and Makoto Matsumoto.
   Copyright (C) 1997 -- 2002, Makoto Matsumoto and Takuji Nishimura,
   All rights reserved."
   For full copyright notice see "src/fizmo/mt19937ar.c".

   libfizmo includes hyphenation patterns provided by the hyph-utf8 project
   at http://www.ctan.org/tex-archive/language/hyph-utf8/. For every file's
   detailed respective copyright information, please refer to the description
   stored at the top of the corresponding file:       
    - "src/locales/en_US/patterns.txt" from hyph-utf8's "hyph-en-us.tex".
    - "src/locales/de_DE/patterns.txt" from hyph-utf8's "hyph-de-1996.tex".
    - "src/locales/fr_FR/patterns.txt" from hyph-utf8's "hyph-fr.tex".

   Currently fizmo is in beta status, meaning it might do unexpected things
   such as stop with an error message, crash or cleesh your machine into a
   frog. There is no warranty of any kind whatsoever and you're entirely on
   your own when running it.

