Home | History | Annotate | Download | only in irs

Lines Matching defs:ndots

117 	/*%< set to n in 'options ndots:n' */
118 uint8_t ndots;
465 long ndots;
477 } else if (strncmp("ndots:", word, 6) == 0) {
478 ndots = strtol(word + 6, &p, 10);
482 if (ndots < 0 || ndots > 0xff) { /* Out of range. */
485 conf->ndots = (uint8_t)ndots;
536 conf->ndots = 1;
690 return ((unsigned int)conf->ndots);