Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
size_t count_whitespace(const char *s) {
  const char *t = s;
  while(isspace((unsigned char)*t))
    ++t;
  return t - s;
}

Priority: P3 Level: L3

Risk Assessment

Rule

Severity

Likelihood

Remediation Cost

Priority

Level

INT37-C

Component

Value

Severity

1 (low)

Likelihood

1 (unlikely) Remediation cost

3 (low)

P3

L3

References