function testme(char *cnt )
{
STRING TESTING;
str_cpy( &TESTING, cnt );
}

function main()
{
testme( "HELLO" );
}

Can someone tell me why the script crashes at the str_cpy.

-David