This is not the way to do it, in my opinion
+ if( Q_stricmp( buildName, "alienint" ) )
…
+ else if( Q_stricmp( buildName, "humanint" ) )
…
+ else if( Q_stricmp( buildName, "specint" ) )
…
+ if( Q_stricmp( buildName, "alienint" ) || Q_stricmp( buildName, "humanint" ) || Q_stricmp( buildName, "specint" ) )
The strcasecmp() function compares the two strings s1 and s2, ignoring
the case of the characters. It returns an integer less than, equal to,
or greater than zero if s1 is found, respectively, to be less than, to
match, or be greater than s2.