STRING.LIB Error !

Dear Friends,

I am new to this Rabbit Processor. I have written a small program which makes use of the "string.lib". Here is the code....

#class auto
#use “string.lib”

main()
{
int i;
char src[100];

strcpy(src,“AT+CGDCONT=1,^IP^,^airtelgprs.com^,^0.0.0.0^,0,0”;

for(i=0;i<100;i++)
{
printf(“%c”,src[i]);
}
}

      When i compile this code, i get the error "[b]line    1 : ERROR STRING.C     : Duplicate _xtoxErr found in file C:\DCRABBIT_9.21\LIB\STRING.LIB (previous one ignored).[/b]"...... Can any one please guide me where i am going wrong in my Code. I am using Dynamic C V9.21......

regards,
Venkhatesh:)

there is a sintax error :

strcpy(src,“AT+CGDCONT=1,^IP^,^airtelgprs.com^,^0. 0.0.0^,0,0”;

this is correct :

strcpy(src,“AT+CGDCONT=1,^IP^,^airtelgprs.com^,^0. 0.0.0^,0,0”);

“)” is missing…

Thanks… !

regards,
Venkhatesh