forked from teamnwah/openmw-tes3coop
8 lines
154 B
C
8 lines
154 B
C
|
#ifndef __STRINGOPS_H
|
||
|
#define __STRINGOPS_H
|
||
|
|
||
|
/// Returns true if str1 begins with substring str2
|
||
|
bool begins(const char* str1, const char* str2);
|
||
|
|
||
|
#endif
|