Added webdev, licenses, and c templates

This commit is contained in:
2026-04-06 14:00:52 -05:00
parent 8c70bbd9f3
commit 8346b2cc57
7 changed files with 322 additions and 0 deletions

11
c-dev/main.c Normal file
View File

@@ -0,0 +1,11 @@
#define DEBUG
#include "../include/template.h"
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[]){
(void) argc;
(void) argv;
return EXIT_SUCCESS;
}