Lines Matching defs:fmtstr
893 * described in fmtstr. This routine is used by xprintf() to allow
899 * fmtstr = format string to check
903 adjust_buf(wchar_t **bp, int *len, wchar_t **offset, char *fmtstr, size_t slen)
910 fmtstr++;
911 } while (strchr("-+ 0", *fmtstr) != (char *)0 || *fmtstr == ('#'));
912 if (*fmtstr != '*') {
913 if (isdigit(*fmtstr)) {
914 width = *fmtstr-'0';
915 while (isdigit(*++fmtstr))
916 width = width * 10 + *fmtstr - '0';
919 fmtstr++;
920 if (*fmtstr == '.') {
921 if (*++fmtstr != '*') {
922 prec = *fmtstr-'0';
923 while (isdigit(*++fmtstr))
924 prec = prec * 10 + *fmtstr - '0';
926 fmtstr++;
928 if (strchr("Llh", *fmtstr) != (char *)0)
929 fmtstr++;
930 if (*fmtstr == 'S') {