| 241 | } |
| 242 | |
| 243 | void PrintInteractiveStdinHint() { |
| 244 | #ifdef _WIN32 |
| 245 | if (_isatty(_fileno(stdin))) { |
| 246 | fprintf(stderr, |
| 247 | "Reading from standard input. Press Ctrl+Z then Enter to " |
| 248 | "finish.\n"); |
| 249 | } |
| 250 | #else |
| 251 | if (isatty(fileno(stdin))) { |
| 252 | fprintf(stderr, |
| 253 | "Reading from standard input. Press Ctrl+D to finish.\n"); |
| 254 | } |
| 255 | #endif |
| 256 | } |
| 257 | |
| 258 | void PrintVariationSelectorWarningOnce() { |
| 259 | if (variationSelectorWarningShown) { |
no outgoing calls
no test coverage detected