Help index | Search IDC: FunctionsA function in IDC returns a value. There are 2 kinds of functions:- built-in functions - user-defined functionsA user-defined function is declared this way:
static func(arg1,arg2,arg3)
{
statements ...
}It is not nesessary to specify the parameter types because any variable can contain a string or a number. All necessary type conversions are performed automatically. |