1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-14 14:24:10 +02:00

Mintest changes

This commit is contained in:
Brian Fiete 2019-11-25 06:48:19 -08:00
parent 94b385495a
commit 79ccb33586
10 changed files with 253 additions and 221 deletions

View file

@ -982,6 +982,18 @@ namespace System
}
ptr
}
/*public mixin ToNewCStr()
{
char8* ptr = null;
if (mPtr != null)
{
ptr = new:mixin char8[mLength + 1]* (?);
Internal.MemCpy(ptr, mPtr, mLength);
ptr[mLength] = 0;
}
ptr
}*/
}
static