0_0_24833818_32300.cpp: In function 'int kmp(char*, char*)':
0_0_24833818_32300.cpp:32:52: error: 'strlen' was not declared in this scope
int sourceStringLength = (int)strlen(sourceString);
^
0_0_24833818_32300.cpp: In function 'bool convertCodonIntoAminoAcid(char*, char*&, int)':
0_0_24833818_32300.cpp:62:36: error: 'strcmp' was not declared in this scope
if (strcmp(codon, endCodon[i]) == 0) {
^
0_0_24833818_32300.cpp:66:37: error: 'strcmp' was not declared in this scope
if (strcmp(codon, endCodon2[i]) == 0) {
^
0_0_24833818_32300.cpp: In function 'bool solveAction(int, int, char*)':
0_0_24833818_32300.cpp:157:33: error: 'strlen' was not declared in this scope
int length = (int)strlen(input);
^
0_0_24833818_32300.cpp:161:32: error: 'strncpy' was not declared in this scope
strncpy(codon, input + i, 3);
^
0_0_24833818_32300.cpp: In function 'int main(int, const char**)':
0_0_24833818_32300.cpp:181:26: error: 'strcmp' was not declared in this scope
if (strcmp(input, "*") == 0) {
^
|