Some checks failed
🔗 GHA / 📊 Static checks (push) Has been cancelled
🔗 GHA / 🤖 Android (push) Has been cancelled
🔗 GHA / 🍏 iOS (push) Has been cancelled
🔗 GHA / 🐧 Linux (push) Has been cancelled
🔗 GHA / 🍎 macOS (push) Has been cancelled
🔗 GHA / 🏁 Windows (push) Has been cancelled
🔗 GHA / 🌐 Web (push) Has been cancelled
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 */
|