$iswildtok(www.mirc.com,www.* *.com,32)

The C is the ascii value that separates the values in the second argument. It would be similar to doing this:

Code:
var %teststring = www.mirc.com
var %wildtokens = www.* *.com

var %c = 0, %cc = $numtok(%wildtokens,32)
while (%c < %cc) {
inc %c
if ($gettok(%wildtokens,%c,32) iswm %teststring) return $true
}


-genius_at_work