mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-30 05:15:59 +02:00
Moving corlib files out of "System" directory into root
This commit is contained in:
parent
4cd58262e4
commit
7dbfd15292
179 changed files with 3 additions and 0 deletions
|
@ -1,12 +0,0 @@
|
|||
namespace System.Text
|
||||
{
|
||||
class Decoder
|
||||
{
|
||||
public Result<int> GetChars(uint8[] data, int dataOfs, int dataLen, char8[] chars, int charOffset)
|
||||
{
|
||||
for (int32 i = 0; i < dataLen; i++)
|
||||
chars[i + charOffset] = (char8)data[i + dataOfs];
|
||||
return dataLen;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue