mirror of
https://github.com/Ed94/metadesk.git
synced 2026-06-13 07:52:22 -07:00
c++ build test, add user-defined-literals for metadesk strings
This commit is contained in:
@@ -1,9 +1,16 @@
|
||||
#include "md.h"
|
||||
#include "md.c"
|
||||
|
||||
MD_String8 operator "" _md(const char *s, size_t size)
|
||||
{
|
||||
MD_String8 str = MD_S8((MD_u8 *)s, (MD_u64)size);
|
||||
return str;
|
||||
}
|
||||
|
||||
int main(void)
|
||||
{
|
||||
|
||||
MD_String8 str = "foobar"_md;
|
||||
printf("%.*s", MD_StringExpand(str));
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user