blob: 45bf27137180a6730f429938a72d0979b81336f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/**
* SPDX-License-Identifier: Apache-2.0
*
* @file static-configurator.h
* @brief static configurator header
*/
#ifndef STATIC_CONFIGURATOR_H
#define STATIC_CONFIGURATOR_H
//-----------------------------------------------------------------------------
#include <stdint.h>
uint64_t refop_get_config_data_size_limit(void);
//-----------------------------------------------------------------------------
#endif //#ifndef STATIC_CONFIGURATOR_H
|