16 lines
272 B
C
Raw Normal View History

#ifndef wren_io_h
#define wren_io_h
#include "wren.h"
#include "wren_common.h"
// This module defines the IO class and its associated methods. They are
// implemented using the C standard library.
#if WREN_USE_LIB_IO
void wrenLoadIOLibrary(WrenVM* vm);
#endif
#endif