contents   index   previous   next



Clib.va_end()

syntax:

Clib.va_end(valist)

where:

valist - a variable list of arguments passed to a function.

 

return:

void.

 

description:

Terminates a variable arguments list. This method makes valist invalid. Many implementations of C require the calling of this function. ScriptEase does not. But, since people may expect it, ScriptEase provides it.

 

see:

Clib.va_arg(), Clib.va_start(), Clib.vfprintf(), Clib.vfscanf(), Clib.vprintf(), Clib.vscanf(), Clib.vsprintf(), Clib.vsscanf()

 

 


Clib.va_start()