mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-11-03 04:17:17 -05:00
22 lines
551 B
C
22 lines
551 B
C
/* Icecast
|
|
*
|
|
* This program is distributed under the GNU General Public License, version 2.
|
|
* A copy of this license is included with this source.
|
|
*
|
|
* Copyright 2018, Philipp "ph3-der-loewe" Schafft <lion@lion.leolix.org>,
|
|
*/
|
|
|
|
#ifndef __CTEST_LIB_H__
|
|
#define __CTEST_LIB_H__
|
|
|
|
void ctest_init(void);
|
|
void ctest_fin(void);
|
|
|
|
void ctest_test(const char *desc, int res);
|
|
void ctest_diagnostic(const char *line);
|
|
void ctest_diagnostic_printf(const char *format, ...);
|
|
void ctest_bail_out(const char *reason);
|
|
int ctest_bailed_out(void);
|
|
|
|
#endif
|