I am trying to change some syntax highlighting words in the following program: https://searchcode.com/codesearch/view/19983066/
In this code I have added the string 'testing', but it is not recognized by the text editor. The string "return" is in the original program and is recognized.
1 2 3 4
constchar *code_keywords[] = { // List of known C/C++ keywords...
"testing",
"return",
//etc.
The following code is calling compare_keywords method: