mirror of
https://github.com/Wessel/boilerplate-c.git
synced 2026-07-17 13:23:56 +02:00
16 lines
246 B
C
16 lines
246 B
C
/* main.c */
|
|
/*
|
|
Project description
|
|
*/
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <time.h>
|
|
|
|
#include "../include/utils.h"
|
|
/* Libtap for tests */
|
|
#include "../include/libtap.h"
|
|
|
|
int main(int argc, char *argv[], char *env[]) {
|
|
return 0;
|
|
}
|