Files
Aerofoil/PortabilityLayer/UTF8.h

14 lines
258 B
C
Raw Normal View History

2020-02-07 22:08:52 -05:00
#pragma once
#include <stdint.h>
2021-03-18 17:08:11 -04:00
#include <stddef.h>
2020-02-07 22:08:52 -05:00
namespace PortabilityLayer
{
class UTF8Processor
{
public:
static bool DecodeToMacRomanPascalStr(const uint8_t *inChars, size_t inSize, uint8_t *outChars, size_t maxOutSize, size_t &outSize);
};
}