/usr/include/log4c/version.h is in liblog4c-dev 1.2.1-3.
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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | /* $Id$
*
* version.h
*
* Copyright 2001-2003, Meiosys (www.meiosys.com). All rights reserved.
*
* See the COPYING file for the terms of usage and distribution.
*/
#ifndef log4c_version_h
#define log4c_version_h
/**
* @file version.h
*
* @brief log4c version information
**/
#include <log4c/defs.h>
__LOG4C_BEGIN_DECLS
/**
* constant macro holding the major version of log4c
**/
#define LOG4C_MAJOR_VERSION 1
/**
* constant macro holding the minor version of log4c
**/
#define LOG4C_MINOR_VERSION 2
/**
* constant macro holding the micro version of log4c
**/
#define LOG4C_MICRO_VERSION 1
/**
* constant variable holding the major version of log4c
**/
extern const int log4c_major_version;
/**
* constant variable holding the minor version of log4c
**/
extern const int log4c_minor_version;
/**
* constant variable holding the micro version of log4c
**/
extern const int log4c_micro_version;
/**
* @return a string containing the full log4c version
**/
extern const char* log4c_version(void);
__LOG4C_END_DECLS
#endif
|