gcvt.c\stdlib\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/stdlib/gcvt.c
blob: 6c075e25851d8b2e90ca5aa680c7f1a0b792dcd1 (plain) (blame)
1
2
3
4
5
6
7
8
#include <stdlib.h>
#include <stdio.h>
char *gcvt(double x, int n, char *b)
{
	sprintf(b, "%.*g", n, x);
	return b;
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月28日 14:27:44 +0000

AltStyle によって変換されたページ (->オリジナル) /