Start organizing code

This commit is contained in:
2025-05-17 12:24:07 -04:00
parent 6f0315e00c
commit 733dc576b7
6 changed files with 524 additions and 479 deletions

11
src/musttail.h Normal file
View File

@@ -0,0 +1,11 @@
#pragma once
#ifndef __has_attribute
#define __has_attribute(x) 0
#endif
#if __has_attribute(musttail)
#define MUSTTAIL __attribute__((musttail))
#else
#define MUSTTAIL
#endif