Home
last modified time | relevance | path

Searched refs:pb (Results 1 – 1 of 1) sorted by relevance

/fatfs-2.7.6/
Dff.c6488 static void putc_bfd (putbuff* pb, TCHAR c) argument
6501 putc_bfd(pb, '\r');
6504 i = pb->idx; /* Write index of pb->buf[] */
6506 nc = pb->nchr; /* Write unit counter */
6511 pb->hs = c; return; /* Save it for next */
6513 hs = pb->hs; pb->hs = 0;
6522 if (pb->ct == 0) { /* Out of multi-byte sequence? */
6523 pb->bs[pb->wi = 0] = (BYTE)c; /* Save 1st byte */
6525 if (((BYTE)c & 0xE0) == 0xC0) pb->ct = 1; /* 2-byte sequence? */
6526 if (((BYTE)c & 0xF0) == 0xE0) pb->ct = 2; /* 3-byte sequence? */
[all …]