progress on base

This commit is contained in:
ed
2025-02-01 20:42:40 -05:00
parent 708fed034b
commit 73fe526501
14 changed files with 313 additions and 70 deletions
+19
View File
@@ -0,0 +1,19 @@
// C++ namespace support
#if MD_DONT_USE_NAMESPACE || MD_COMPILER_C
# if MD_COMPILER_C
# define MD_NS
# define MD_NS_BEGIN
# define MD_NS_END
# else
# define MD_NS ::
# define MD_NS_BEGIN
# define MD_NS_END
# endif
#else
namespace MD {}
namespace md = MD;
# define MD_NS MD::
# define MD_NS_BEGIN namespace MD {
# define MD_NS_END }
#endif