Home | History | Annotate | Download | only in units

Lines Matching defs:minus

348 	char *minus;
356 * trash minus signs on numbers.
358 * 20160204 dholland: this used to let through only minus
360 * floating constant (e.g. 3.6e-5), and a minus sign at the
362 * it so any minus sign before a digit (or decimal point) is
371 for (minus = scratch + 1; *minus; minus++) {
372 if (*minus != '-') {
375 if (strchr(".0123456789", *(minus + 1))) {
378 *minus = ' ';