MCUX CLNS
MCUX Crypto Library Normal Secure
Loading...
Searching...
No Matches
mcuxCl_clns.h
Go to the documentation of this file.
1/*--------------------------------------------------------------------------*/
2/* Copyright 2020 NXP */
3/* */
4/* NXP Confidential and Proprietary. This software is owned or controlled */
5/* by NXP and may only be used strictly in accordance with the applicable */
6/* license terms. By expressly accepting such terms or by downloading, */
7/* installing, activating and/or otherwise using the software, you are */
8/* agreeing that you have read, and that you agree to comply with and are */
9/* bound by, such license terms. If you do not agree to be bound by the */
10/* applicable license terms, then you may not retain, install, activate or */
11/* otherwise use the software. */
12/*--------------------------------------------------------------------------*/
13
16
17#ifndef MCUXCL_CLNS_H_
18#define MCUXCL_CLNS_H_
19
20#include <mcuxClConfig.h> // Exported features flags header
21
22/**********************************************
23 * CONSTANTS
24 **********************************************/
25
26#define MCUXCL_VERSION_MAX_SIZE ((size_t) 32U)
27
31#define MCUXCL_VERSION "DCI_SDK_V4.0.0"
32
33/**********************************************
34 * FUNCTIONS
35 **********************************************/
36
43static inline char const* mcuxCl_GetVersion(void)
44{
45 return MCUXCL_VERSION;
46}
47
48#endif /* MCUXCL_CLNS_H_ */
#define MCUXCL_VERSION
String literal for the version string of CLNS release that this header is part of.
Definition mcuxCl_clns.h:31
static char const * mcuxCl_GetVersion(void)
Gets the CLNS version string that uniquely identifies this release of the CLNS.
Definition mcuxCl_clns.h:43