/* * Version feature information * * Copyright The Mbed TLS Contributors * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later */ #include "common.h" #if defined(MBEDTLS_VERSION_C) #include "mbedtls/version.h" #include <string.h> static const char * const features[] = …; int mbedtls_version_check_feature(const char *feature) { … } #endif /* MBEDTLS_VERSION_C */