22.10.2018, 13:15
Код:
if ((strcmp("LEARN!", text, true, strlen(text)) == 0) && (strlen(text) == strlen("yes")))
It should be this:
Код:
if ((strcmp("LEARN!", text, true) == 0))
Код:
if ((strcmp("LEARN!", text, true, 6) == 0)
if ((strcmp("LEARN!", text, true, strlen(text)) == 0) && (strlen(text) == strlen("yes")))
if ((strcmp("LEARN!", text, true) == 0))
if ((strcmp("LEARN!", text, true, 6) == 0)