Listing 4: C++ header adapter

//
// string - adapt string.hpp to
// look like the standard
// string header
//
#ifndef STRING_INCLUDED
#define STRING_INCLUDED
#include <string.hpp>
typedef String string;
#endif