Thread: bool:StrEqual
View Single Post
ddhoward
Veteran Member
Join Date: May 2012
Location: California
Old 01-26-2015 , 00:58   Re: bool:StrEqual
Reply With Quote #2

Code:
stock bool:StrEqual(String:str1[], String:str2[], bool:caseSensitive)
{
    return strcmp(str1, str2, caseSensitive) == 0;
}
StrEqual already exists in Sourcemod's default includes. You don't need to have this here; delete this entire block.
__________________
ddhoward is offline