Lines Matching defs:fptr
942 char *fptr = &formatbuf[1];
953 *fptr++ = '-';
955 *fptr++ = '+';
957 *fptr++ = ' ';
959 *fptr++ = '#';
961 *fptr = 0;
967 len = curl_msnprintf(fptr, left, "%d", width);
968 fptr += len;
988 len = curl_msnprintf(fptr, left, ".%d", prec);
989 fptr += len;
992 *fptr++ = 'l';
995 *fptr++ = (char)((flags & FLAGS_UPPER) ? 'E':'e');
997 *fptr++ = (char)((flags & FLAGS_UPPER) ? 'G' : 'g');
999 *fptr++ = 'f';
1001 *fptr = 0; /* and a final null-termination */
1018 for(fptr = work; *fptr; fptr++)
1019 OUTCHAR(*fptr);