/*Example of usage:*/ int number = Pike_sp[-1].u.integer;When a C level function is called and the arguments are passed to it by the stack, it can find its first argument in Pike_sp[-args], its second in Pike_sp[1-args] and its n'th argument in Pike_sp[n-1-args]. This means that argument i is found in Pike_sp[i-1-args] for every 1 =i=args. The elements of Pike_sp are of type struct svalue.