forked from len0rd/rockbox
Convert non-ASCII characters to UTF-8
Comments and notes are converted to UTF-8. Already broken multibyte characters are fixed using common sense. This patch contains no code changes. Change-Id: Ia511ab84936cb2495ac17309493a9b98727a7902
This commit is contained in:
parent
8f5128da16
commit
5d7c8a0df1
32 changed files with 94 additions and 90 deletions
|
|
@ -79,8 +79,8 @@
|
|||
#define FMT_RADIX_s 0x020 /* string (%s) */
|
||||
#define FMT_RADIX_u 0x040 /* unsigned integer type, decimal (%u) */
|
||||
#define FMT_RADIX_x 0x080 /* unsigned integer type, hex (%x %X) */
|
||||
#define FMT_RADIX_a 0x100 /* hex floating point "[-]0xh.hhhhp±d" */
|
||||
#define FMT_RADIX_e 0x200 /* floating point with exponent "[-]d.ddde±dd" */
|
||||
#define FMT_RADIX_a 0x100 /* hex floating point "[-]0xh.hhhhp±d" */
|
||||
#define FMT_RADIX_e 0x200 /* floating point with exponent "[-]d.ddde±dd" */
|
||||
#define FMT_RADIX_f 0x400 /* floating point "[-]ddd.ddd" */
|
||||
#define FMT_RADIX_g 0x800 /* floating point exponent or decimal depending
|
||||
upon value and precision */
|
||||
|
|
@ -866,7 +866,7 @@ static int format_double_radix(double f,
|
|||
}
|
||||
|
||||
if (explen) {
|
||||
/* build exponent string: 'e±dd' */
|
||||
/* build exponent string: 'e±dd' */
|
||||
char *p = fmt_buf->bufend;
|
||||
int signchar = '+';
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue