Searched refs:str (Results 1 – 2 of 2) sorted by relevance
/fatfs-2.7.6/include/ |
D | ff.h | 336 int f_puts (const TCHAR* str, FIL* cp); /* Put a string to the file */ 337 int f_printf (FIL* fp, const TCHAR* str, ...); /* Put a formatted string to the file */
|
/fatfs-2.7.6/ |
D | ff.c | 733 const TCHAR** str /* Pointer to pointer to TCHAR string in configured encoding */ in tchar2uni() argument 737 const TCHAR *p = *str; in tchar2uni() 795 *str = p; /* Next read pointer */ in tchar2uni() 6661 const TCHAR* str, /* Pointer to the string to be output */ argument 6669 while (*str) putc_bfd(&pb, *str++); /* Put the string */ 6818 char d, str[SZ_NUM_BUF]; local 6897 ftoa(str, va_arg(arp, double), prec, tc); /* Make a flaoting point string */ 6898 for (j = strlen(str); !(f & 2) && j < w; j++) putc_bfd(&pb, pad); /* Left pads */ 6899 for (i = 0; str[i]; putc_bfd(&pb, str[i++])) ; /* Body */ 6935 str[i++] = d + '0'; [all …]
|