* Create tokens from code. * The code must be preprocessed first: * - multiline strings are not handled. * - UTF in the code are not handled. * - comments are not handled. */
| 100 | * - comments are not handled. |
| 101 | */ |
| 102 | bool createTokensFromBuffer(const uint8_t* data, size_t size) { |
| 103 | return createTokensFromBuffer(reinterpret_cast<const char*>(data), size); |
| 104 | } |
| 105 | bool createTokensFromBuffer(const char* data, size_t size); |
| 106 | template<size_t size> |
| 107 | // cppcheck-suppress unusedFunction - used in tests only |
no outgoing calls
no test coverage detected