1
0
mirror of https://github.com/Wessel/boilerplate-c.git synced 2026-07-17 13:23:56 +02:00
Files
boilerplate-c/src/main.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;
}