13 lines
329 B
C
13 lines
329 B
C
/* This software is licensed by the MIT License, see LICENSE file */
|
|
/* Copyright © 2022 Gregory Lirent */
|
|
|
|
#include <stdio.h>
|
|
|
|
#ifndef LIBCDSB_TESTS_TEST_H
|
|
#define LIBCDSB_TESTS_TEST_H
|
|
|
|
extern void put_separator();
|
|
extern void test_init(int argc, char** argv);
|
|
|
|
#endif /* LIBCDSB_TESTS_TEST_H */
|