Create a fresh input stream
| 176 | |
| 177 | // Create a fresh input stream |
| 178 | static void InitializeInputStream(Preprocessor* preprocessor, PreprocessorInputStream* inputStream) |
| 179 | { |
| 180 | inputStream->parent = NULL; |
| 181 | inputStream->conditional = NULL; |
| 182 | inputStream->environment = &preprocessor->globalEnv; |
| 183 | } |
| 184 | |
| 185 | // Destroy an input stream |
| 186 | static void DestroyInputStream(Preprocessor* /*preprocessor*/, PreprocessorInputStream* inputStream) |
no outgoing calls
no test coverage detected