| 89 | |
| 90 | |
| 91 | TCHAR * StrUpper(TCHAR *pstr) |
| 92 | { |
| 93 | TCHAR *pstrCur = pstr; |
| 94 | |
| 95 | while('\0' != *pstrCur) |
| 96 | { |
| 97 | if ('a' <= *pstrCur && *pstrCur <= 'z') |
| 98 | { |
| 99 | *pstrCur += 'A' - 'a'; |
| 100 | } |
| 101 | ++pstrCur; |
| 102 | } |
| 103 | |
| 104 | return (pstr); |
| 105 | } |
| 106 | |
| 107 | #if defined(WIN32) || defined(_WIN32) |
| 108 |
nothing calls this directly
no outgoing calls
no test coverage detected