lua-users home
lua-l archive

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


My first attempt was using lua_next() but I failed to ever figure out how to
setup the stack properly. I don't think that end of things is very well
documented.

Michael

----- Original Message -----
From: "Brian Hook" <hook_l@pyrogon.com>
To: "Lua list" <lua@bazar2.conectiva.com.br>
Sent: Monday, February 23, 2004 9:38 PM
Subject: Re: How to access array inside a table from C code ?


> I think I am starting to understand something of what is going on
> here. If the table only has values and no "n", I would use
> table.getn() inside a script to get the count limit. But is there a
> in C callable equivalent?

I'm not aware of one, but I'm a relative newbie.  You could instead
just iterate over the table with lua_next(), or guarantee that "n" is
valid.

Brian