Home
last modified time | relevance | path

Searched refs:oct_digit (Results 1 – 1 of 1) sorted by relevance

/coreutils/src/
Dtr.c442 int oct_digit; in unquote() local
483 oct_digit = s[i + 2] - '0'; in unquote()
484 if (0 <= oct_digit && oct_digit <= 7) in unquote()
486 c = 8 * c + oct_digit; in unquote()
488 oct_digit = s[i + 2] - '0'; in unquote()
489 if (0 <= oct_digit && oct_digit <= 7) in unquote()
491 if (8 * c + oct_digit < N_CHARS) in unquote()
493 c = 8 * c + oct_digit; in unquote()