Folder per module in test/. Header only tests with one actual main file to implement a program that runs them. Makefile runs the test and provides some eye candy to show if the test succeeded or failed. The tests, on the other hand, will show success or failure for each of them.
19 lines
376 B
C
19 lines
376 B
C
/* Copyright (C) 2024 Aryadev Chavali
|
|
|
|
* You may distribute and modify this code under the terms of the
|
|
* GPLv2 license. You should have received a copy of the GPLv2
|
|
* license with this file. If not, please write to:
|
|
* aryadev@aryadevchavali.com.
|
|
|
|
* Created: 2024-04-28
|
|
* Author: Aryadev Chavali
|
|
* Description:
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
int main(void)
|
|
{
|
|
return 0;
|
|
}
|