added some basic code to the files

This commit is contained in:
jakeg00dwin 2024-03-08 10:42:40 -08:00
parent aa38c9dc83
commit ddeb4bcc23
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,8 @@
#include "wrap.h"
#include <stdio.h>
void some_function(void)
{
printf("some_function()\n");
}

View File

@ -0,0 +1,6 @@
#ifndef WRAP_H
#define WRAP_H
void some_function(void);
#endif //WRAP_H