Coverage Report

Created: 2025-06-20 06:13

/src/c-blosc2/plugins/tuners/tuners-registry.c
Line
Count
Source
1
/*
2
  Copyright (C) 2021 The Blosc Developers
3
  https://blosc.org
4
  License: BSD 3-Clause (see LICENSE.txt)
5
*/
6
7
#include "blosc2/tuners-registry.h"
8
#include "blosc-private.h"
9
#include "blosc2.h"
10
11
#include <stddef.h>
12
13
1
void register_tuners(void) {
14
15
1
  blosc2_tuner btune;
16
1
  btune.id = BLOSC_BTUNE;
17
1
  btune.name = "btune";
18
1
  btune.init = NULL;
19
1
  btune.next_cparams = NULL;
20
1
  btune.next_blocksize = NULL;
21
1
  btune.update = NULL;
22
1
  btune.free = NULL;
23
24
1
  register_tuner_private(&btune);
25
1
}