MCPcopy Create free account
hub / github.com/coreutils/coreutils / or

Function or

src/test.c:532–544  ·  view source on GitHub ↗

* or: * and * and '-o' or */

Source from the content-addressed store, hash-verified

530 * and '-o' or
531 */
532static bool
533or (void)
534{
535 bool value = false;
536
537 while (true)
538 {
539 value |= and ();
540 if (! (pos < argc && streq (argv[pos], "-o")))
541 return value;
542 advance (false);
543 }
544}
545
546/*
547 * expr:

Callers 1

exprFunction · 0.85

Calls 2

andFunction · 0.85
advanceFunction · 0.85

Tested by

no test coverage detected