Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
stdlib
gcvt.c
pretty
plain
permalink
blame
history
•
9 lines
•
139 B
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
}