RLDoom/RLDoom/RLDoom_Utils.h
2025-04-27 15:39:25 -04:00

13 lines
461 B
C++

#pragma once
#include <iostream>
namespace RLDoom {
namespace Utils {
namespace Strings {
bool IterativeComp(std::string originalString, int startPointer, std::string toCompare);
std::string IterativeStringExcerpt(std::string originalString, int startPointer, int length);
int32_t StringIndexToInteger_4b_le(std::string originalString, int startPointer);
int32_t StringIndexToInteger_2b_le(std::string originalString, int startPointer);
}
}
}