/usr/include/cjose/version.h is in libcjose-dev 0.6.0+dfsg1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | /*
* Copyrights
*
* Portions created or assigned to Cisco Systems, Inc. are
* Copyright (c) 2014-2016 Cisco Systems, Inc. All Rights Reserved.
*/
/**
* \file
* \brief
* Function to retrieve the version of CJOSE
*/
#ifndef _CJOSE_VERSION_H_
#define _CJOSE_VERSION_H_
#ifdef __cplusplus
extern "C"
{
#endif
/**
* The declaration version of CJOSE. This identifies
* the version the header files were compiled for.
*/
#define CJOSE_VERSION "0.6.0"
/**
* Retrieves the implementation version of CJOSE.
*
* \returns the implementation version number.
*/
const char *cjose_version();
#ifdef __cplusplus
}
#endif
#endif // _CJOSE_VERSION_H_
|