chore: add project framework

This commit is contained in:
Jef Roosens 2022-12-03 22:50:32 +01:00
parent 342f977ac7
commit 65d67b2c01
Signed by: Jef Roosens
GPG key ID: B75D4F293C7052DB
7 changed files with 82 additions and 6 deletions

View file

@ -1,5 +1,5 @@
#ifndef VIETER_DYNARRAY
#define VIETER_DYNARRAY
#ifndef CIETER_DYNARRAY
#define CIETER_DYNARRAY
#include <stdlib.h>
#include <string.h>

View file

@ -1,5 +1,5 @@
#ifndef VIETER_PACKAGE
#define VIETER_PACKAGE
#ifndef CIETER_PACKAGE
#define CIETER_PACKAGE
#include <stdint.h>
#include <stdbool.h>

View file

@ -1,5 +1,5 @@
#ifndef VIETER_PACKAGE_INFO
#define VIETER_PACKAGE_INFO
#ifndef CIETER_PACKAGE_INFO
#define CIETER_PACKAGE_INFO
#define FREE_STRING(sp) if (sp != NULL) free(sp)