API Reference Manual 1.51.0
Loading...
Searching...
No Matches
helpers.h
1/* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright (c) 2025 Nokia
3 */
4
7#ifndef HELPERS_H_
8#define HELPERS_H_
9
10#define CONCAT_HELPER(a, b) a##b
11#define CONCAT(a, b) CONCAT_HELPER(a, b)
12
13#endif