Can anyone tell me why I can't make str_cpy() work in Lite-C? I never had any troubles with it in C-Script.

Here's my entire program:

////////////////////////////////////////////////////////////////////
#include <acknex.h>
#include <default.c>
/////////////////////////////////////////////////////////////////////

STRING* s;
STRING* s2;

function main()
{
video_mode = 7;
screen_color.blue = 150;

//this one gives an error
str_cpy(s, "test");

//this one also gives an error
//str_cpy(s, s2);
}