mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-04-06 19:21:05 +00:00
21 lines
435 B
C
21 lines
435 B
C
/**
|
|
* \file private_access.h
|
|
*
|
|
* \brief Macro wrapper for struct's members.
|
|
*/
|
|
/*
|
|
* Copyright The Mbed TLS Contributors
|
|
* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef MBEDTLS_PRIVATE_ACCESS_H
|
|
#define MBEDTLS_PRIVATE_ACCESS_H
|
|
|
|
#ifndef MBEDTLS_ALLOW_PRIVATE_ACCESS
|
|
#define MBEDTLS_PRIVATE(member) private_##member
|
|
#else
|
|
#define MBEDTLS_PRIVATE(member) member
|
|
#endif
|
|
|
|
#endif /* MBEDTLS_PRIVATE_ACCESS_H */
|