/ Get the value corresponding to the given key. */ /
| 1112 | /* Get the value corresponding to the given key. */ |
| 1113 | /***********************************************************************/ |
| 1114 | PJVAL JOBJECT::GetKeyValue(const char* key) |
| 1115 | { |
| 1116 | for (PJPR jp = First; jp; jp = jp->Next) |
| 1117 | if (!strcmp(jp->Key, key)) |
| 1118 | return jp->Val; |
| 1119 | |
| 1120 | return NULL; |
| 1121 | } // end of GetValue; |
| 1122 | |
| 1123 | /***********************************************************************/ |
| 1124 | /* Return the text corresponding to all keys (XML like). */ |
no outgoing calls
no test coverage detected