/** ** \file src/version.hh ** \brief Version definitions. */ #pragma once /// \name Program identity. /// \{ /// Name of this program. extern const char* program_name; /// Version string of this program. extern const char* program_version; /// Bug report address of this program. extern const char* program_bug_address; /// Describe program and accepted arguments. extern const char* program_doc; extern const char* program_args_doc; /// \}