1
0
mirror of https://github.com/Wessel/boilerplate-c.git synced 2026-07-18 22:03:58 +02:00

feat: initial commit and populate repo

This commit is contained in:
2023-02-06 15:13:16 +01:00
parent 5f7d41f1a6
commit 1c3bb4e360
17 changed files with 159 additions and 237 deletions

13
src/main.c Normal file
View File

@@ -0,0 +1,13 @@
/* main.c */
/*
Project description
*/
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include "../include/utils.h"
int main(int argc, char *argv[], char *env[]) {
return 0;
}