Skip to main content

numargs

warning

This function starts with lowercase letter.

คำอธิบาย

Get the number of arguments passed to a function.

NameDescription

ตัวอย่าง

SomeFunction(...)
{
printf("numargs(): %i", numargs());
}

public OnFilterScriptInit()
{
SomeFunction(1, 2, 3);
}

// Output: "numargs(): 3"
// Because 3 parameters (1, 2, 3) were passed.

ฟังก์ชั่นที่เกี่ยวข้องกัน

  • getarg: Retrieve an argument from a variable argument list.
  • setarg: Set an argument.