| 185 | |
| 186 | |
| 187 | const char* skipWhitespace(const char* str){ |
| 188 | |
| 189 | const char* result = str; |
| 190 | |
| 191 | while(*result == ' ' || *result == '\t' || *result =='\0'){ |
| 192 | result++; |
| 193 | } |
| 194 | return result; |
| 195 | } |
| 196 | |
| 197 | VARIANT createVariantString(const char* str){ |
| 198 |