Home | History | Annotate | Download | only in Interpreter

Lines Matching defs:Last

357       char Last = *FB++ = *FmtStr++;
359 while (Last != 'c' && Last != 'd' && Last != 'i' && Last != 'u' &&
360 Last != 'o' && Last != 'x' && Last != 'X' && Last != 'e' &&
361 Last != 'E' && Last != 'g' && Last != 'G' && Last != 'f' &&
362 Last != 'p' && Last != 's' && Last != '%') {
363 if (Last == 'l' || Last == 'L') HowLong++; // Keep track of l's
364 Last = *FB++ = *FmtStr++;
368 switch (Last) {