repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
iconv: add euro symbol to GBK as single byte 0x80
[musl.git]
/
src
/
stdlib
/
gcvt.c
blob
f29bc304e5bad0459c699422b273d6e381f2c539
1
#define _GNU_SOURCE
2
#include <stdlib.h>
3
#include <stdio.h>
4
5
char
*
gcvt
(
double
x
,
int
n
,
char
*
b
)
6
{
7
sprintf
(
b
,
"%.*g"
,
n
,
x
);
8
return
b
;
9
}