Inital Commit

This commit is contained in:
vx-clutch
2026-04-22 21:44:48 -04:00
commit 19d543f99d
16 changed files with 290 additions and 0 deletions

8
lib/print.c Normal file
View File

@@ -0,0 +1,8 @@
#include "print.h"
#include <stdio.h>
#include <tcpl/tcpl.h>
int tcpl_print(char* s)
{
return printf("%s: %s\n", arg0, s);
}

9
lib/print.h Normal file
View File

@@ -0,0 +1,9 @@
#ifndef TCPL_PRINT_H
#define TCPL_PRINT_H
/*
* Define the print functions for this project
*/
int tcpl_print(char* s);
#endif