Quote:
Originally Posted by Sylwester
PHP Code:
set_task(5.0, "NextMap", 555, rest, strlen(rest))
|
It's more proper to use sizeof() since strings are null-terminated and the null-char would not be 'sent' using strlen(). Either way probably works, though.
PHP Code:
set_task( 5.0 , "NextMap" , 555 , rest , sizeof( rest ) )
__________________