| /* | |
| * Copyright 2017, Data61, CSIRO (ABN 41 687 119 230) | |
| * | |
| * SPDX-License-Identifier: BSD-2-Clause | |
| */ | |
| #pragma once | |
| #define config_set(macro) _is_set_(macro) | |
| #define _macrotest_1 , | |
| #define _is_set_(value) _is_set__(_macrotest_##value) | |
| #define _is_set__(comma) _is_set___(comma 1, 0) | |
| #define _is_set___(_, v, ...) v |