1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-09 01:29:44 +00:00
CLK/Storage/Data/Commodore.hpp
2024-01-16 23:34:46 -05:00

19 lines
317 B
C++

//
// Commodore.hpp
// Clock Signal
//
// Created by Thomas Harte on 06/11/2016.
// Copyright 2016 Thomas Harte. All rights reserved.
//
#pragma once
#include <cstdint>
#include <string>
namespace Storage::Data::Commodore {
std::wstring petscii_from_bytes(const uint8_t *string, int length, bool shifted);
}