mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-28 19:45:32 +00:00
14 lines
252 B
C++
14 lines
252 B
C++
#include "stringops.h"
|
|
|
|
/// Returns true if str1 begins with substring str2
|
|
bool begins(const char* str1, const char* str2)
|
|
{
|
|
while(*str2)
|
|
{
|
|
if(*str1 == 0 || *str1 != *str2) return false;
|
|
|
|
str1++;
|
|
str2++;
|
|
}
|
|
return true;
|
|
}
|