/*----------------------------------------------------------------------- The Lazy Virtual Machine. Daan Leijen. Copyright 2001, Daan Leijen. All rights reserved. This file is distributed under the terms of the GNU Library General Public License. -----------------------------------------------------------------------*/ /* $Id: primstring.h 177 2002-11-15 16:21:56Z cvs-3 $ */ #ifndef primstring_h #define primstring_h value prim_string_of_chars( long len, value chars ); value prim_chars_of_string( value str ); long prim_string_length( value str ); #endif