(typeStr)
| 875 | # |
| 876 | # \param typeStr - Whether a FmtType is a string or not in C/C++ land |
| 877 | def isStringType(typeStr): |
| 878 | return typeStr and ( |
| 879 | -1 != typeStr.find("char*") or |
| 880 | -1 != typeStr.find("wchar_t*")) |
| 881 | |
| 882 | # Given a C++ type (such as 'int') as identified by parseTypesInFmtString, |
| 883 | # determine whether that type is a wide string or not. |
no outgoing calls