| 3249 | }; |
| 3250 | |
| 3251 | CodeValue* find(CodeValue* array, MetaName& name) |
| 3252 | { |
| 3253 | for (; array->value; ++array) |
| 3254 | { |
| 3255 | if (name == array->value) |
| 3256 | return array; |
| 3257 | } |
| 3258 | |
| 3259 | return nullptr; |
| 3260 | } |
| 3261 | |
| 3262 | |
| 3263 | dsc* evlEncryptDecrypt(thread_db* tdbb, const SysFunction* function, const NestValueArray& args, |
no outgoing calls
no test coverage detected