4
mirror of https://gitlab.com/zephray/glider.git synced 2026-08-02 02:47:38 +00:00
Files
glider/fw/User/numfmt.h
2026-07-04 07:46:58 -04:00

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);