+/*
+ * CUtils: some small C utilities
+ *
+ * Copyright (C) 2022 Niki Roo
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
+ */
+
+/**
+ * @file launcher.h
+ * @author Niki
+ * @date 2022 - 2024
+ *
+ * @brief Unit test helper (based upon <tt>check</tt>)
+ *
+ * This file offers a series of help functions for the <tt>check</tt> C unit
+ * tests system.
+ */
+
#ifndef _LAUNCHER_H
#define _LAUNCHER_H
extern int launcher_color;
+/**
+ * Return the test runner (the list of tests to run).
+ *
+ * @param more activate more, longer checks (usually memory related)
+ */
SRunner *get_tests(int more);
void test_init(const char name[]);
void test_failure();
+int launch_tests(int argc, char **argv);
+
#endif