bool AiaBlobExists()

in ports/Storage/src/aia_storage_config.c [162:177]


bool AiaBlobExists( const char* key )
{
	bool existed = false;
    blobstorage_key_e k = AIA_BLOB_STORAGE_KEY_MAX;

    for( k = AIA_BLOB_STORAGE_KEY_START;k < AIA_BLOB_STORAGE_KEY_MAX; ++k )
    {
        if( strncmp(key, blobstorage[ k ].key, strlen(key)) == 0 )
        {
            existed = true;
            break;
        }
    }

    return existed;
}