inline bool AiaFindJsonValue()

in ports/IoT/include/iot/aia_iot_config.h [128:137]


inline bool AiaFindJsonValue( const char* jsonDocument,
                              size_t jsonDocumentLength, const char* jsonKey,
                              size_t jsonKeyLength, const char** jsonValue,
                              size_t* jsonValueLength )
{
    return jsonDocument && jsonKey && jsonDocumentLength && jsonKeyLength &&
            IotJsonUtils_FindJsonValue( jsonDocument, jsonDocumentLength, jsonKey,
                                      jsonKeyLength, jsonValue,
                                      jsonValueLength );
}