use direct methods for string, hash and avoid Strstr/Strnstr

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@7893 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Marcelo Matus 2005-11-28 02:44:12 +00:00
commit d4e1bae364
7 changed files with 193 additions and 171 deletions

View file

@ -864,7 +864,7 @@ SwigType_templateargs(const SwigType *t) {
int
SwigType_istemplate(const SwigType *t) {
if (Strstr(t,"<(")) return 1;
if (strstr(Char(t),"<(")) return 1;
return 0;
}