Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I know the number of arguments passed to a C function from lua?

Will the following work?

int test(lua_State *l) {
  int result = 0;
  int n=1;
  while(!lua_isnil(l,n)) {
    result = result + lua_tointeger(l, n);
    ++n
  }

  lua_pushnumber(l, result);
  return 1;
}

NOTE: This is essentially a resurrection of a question deleted by its owner that I thought was worth keeping.

share|improve this question

1 Answer

All the arguments are just pushed onto to the lua stack, so you can get the number of elements by finding out the initial size of the stack. The call to do that is lua_gettop(L).

So your code would look roughly like this:

int test(lua_State *l)
{
  int result = 0;
  int nargs = lua_gettop(l);
  for(int i=1; i<=nargs; ++i)
  {
    result += lua_tointeger(l, i);;
  }

  lua_pushnumber(l, result);
  return 1;
}

The problem with the code as originally written is that it will not handle null arguments correctly. e.g test(1,nil,3) will return 1, rather than 4.

share|improve this answer
val is not declared and is not really needed. – lhf Feb 1 at 11:11
@lhf agreed. I've removed it. In general though, for that kind of issue you're welcome to fix the code (if you have high enough reputation.) – Michael Anderson Feb 1 at 11:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.