15 lines
269 B
C
15 lines
269 B
C
|
// Copyright (c) Acconeer AB, 2019-2021
|
||
|
// All rights reserved
|
||
|
|
||
|
#ifndef ACC_VERSION_H_
|
||
|
#define ACC_VERSION_H_
|
||
|
|
||
|
/**
|
||
|
* @brief Get the version of the Acconeer software
|
||
|
*
|
||
|
* @return A string describing the software version.
|
||
|
*/
|
||
|
const char *acc_version_get(void);
|
||
|
|
||
|
#endif
|