15.11.2010, 12:14
People should start reading their errors.
1)
If you for example do
then you will get an error like in the quote above. You need to define which character of the string "tmp2" is compared to "A" in the example.
2)
Means your using strtok somewhere in your script without having the actual function included. You're telling the script to use something it does not know.
3)
You've defined a value named Index which you've never used. Either use it somewhere or remove it to make the warnings gone
1)
Quote:
array must be indexed (variable "tmp2") |
Код:
if(tmp2 == 'A')
Код:
if(tmp2[0] == 'A')
Quote:
error 017: undefined symbol "strtok" |
3)
Quote:
warning 203: symbol is never used: "Index" |