lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> I'm trying to use lua in a non-standard environment that does not have 
> access to anything like the typical file system and cannot use the I/O 
> functions declared in C stdio.h.

I think the easiest route is to avoid stdio.h is to replace "readable"
in loadlib.c and luaL_loadfile in lauxlib.c by suitable functions for
your system. --lhf