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. This software is owned or controlled by NXP and may */
5/* only be used strictly in accordance with the applicable license terms. */
6/* By expressly accepting such terms or by downloading, installing, */
7/* activating and/or otherwise using the software, you are agreeing that */
8/* you have read, and that you agree to comply with and are bound by, such */
9/* license terms. If you do not agree to be bound by the applicable license */
10/* terms, then you may not retain, install, activate or otherwise use the */
11/* software. */
12/*--------------------------------------------------------------------------*/
13
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
28#define MCUXCL_VERSION "SDK_1.9.0"
29
30/**********************************************
31 * FUNCTIONS
32 **********************************************/
33
40static inline char const* mcuxCl_GetVersion(void)
41{
42 return MCUXCL_VERSION;
43}
44
45#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:28
static char const * mcuxCl_GetVersion(void)
Gets the CLNS version string that uniquely identifies this release of the CLNS.
Definition mcuxCl_clns.h:40