You've already forked glider
mirror of
https://gitlab.com/zephray/glider.git
synced 2026-08-02 02:47:38 +00:00
8 lines
194 B
C
8 lines
194 B
C
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
|
|
bool numfmt_parse_float(const char *text, float *value);
|
|
void numfmt_format_fixed(char *buf, size_t len, float value, unsigned decimals);
|