mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-04 15:05:36 +00:00
1de2631877
Sprinkle includes of the <cstdint> header as needed to make the build succeed with GCC 13, this fixes both with SDL and Qt builds.
22 lines
402 B
C++
22 lines
402 B
C++
//
|
|
// Commodore.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 06/11/2016.
|
|
// Copyright 2016 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef Storage_Data_Commodore_hpp
|
|
#define Storage_Data_Commodore_hpp
|
|
|
|
#include <cstdint>
|
|
#include <string>
|
|
|
|
namespace Storage::Data::Commodore {
|
|
|
|
std::wstring petscii_from_bytes(const uint8_t *string, int length, bool shifted);
|
|
|
|
}
|
|
|
|
#endif /* Commodore_hpp */
|