This commit is contained in:
Jan Racek
2026-03-27 21:29:01 +01:00
parent 85eb7e59d9
commit bfab154547
42 changed files with 118 additions and 1013 deletions

10
src/streq.hh Normal file
View File

@@ -0,0 +1,10 @@
#pragma once
namespace psxsplash {
inline bool streq(const char* a, const char* b) {
while (*a && *a == *b) { a++; b++; }
return *a == *b;
}
} // namespace psxsplash