//--------------------------------------------------------------------------- // // SCSI Target Emulator RaSCSI Reloaded // for Raspberry Pi // // Copyright (C) 2021-2022 Uwe Seimet // //--------------------------------------------------------------------------- #pragma once #include using namespace std; namespace ras_util { // Separator for compound options like ID:LUN static const char COMPONENT_SEPARATOR = ':'; bool GetAsUnsignedInt(const string&, int&); string ProcessId(const string&, int, int&, int&); string Banner(const string&); string GetExtensionLowerCase(const string&); void FixCpu(int); }