challenger_util.h (1090B)
1 /* 2 This file is part of CHALLENGER 3 Copyright (C) 2023 Taler Systems SA 4 5 CHALLENGER is free software; you can redistribute it and/or modify it under the 6 terms of the GNU General Public License as published by the Free Software 7 Foundation; either version 3, or (at your option) any later version. 8 9 CHALLENGER is distributed in the hope that it will be useful, but WITHOUT ANY 10 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR 11 A PARTICULAR PURPOSE. See the GNU General Public License for more details. 12 13 You should have received a copy of the GNU General Public License along with 14 CHALLENGER; see the file COPYING. If not, see <http://www.gnu.org/licenses/> 15 */ 16 /** 17 * @file include/challenger_util.h 18 * @brief Interface for common utility functions 19 * @author Christian Grothoff 20 */ 21 #ifndef CHALLENGER_UTIL_H 22 #define CHALLENGER_UTIL_H 23 24 #include <gnunet/gnunet_util_lib.h> 25 26 /** 27 * Return project data used by Challenger. 28 * 29 * @return project data for challenger 30 */ 31 const struct GNUNET_OS_ProjectData * 32 CHALLENGER_project_data (void); 33 34 35 #endif