This commit is contained in:
Edward Emelianov
2026-08-12 22:35:39 +03:00
parent 40d0605218
commit 811d8bda5d
12 changed files with 464 additions and 41 deletions

View File

@@ -19,12 +19,13 @@
#include <stdint.h>
char *omit_spaces(char *buf);
void hexdump(int (*sendfun)(const char*), uint8_t *arr, uint16_t len);
char *u2str(uint32_t val);
char *i2str(int32_t i);
char *float2str(float x, uint8_t prec);
char *uhex2str(uint32_t val);
char *gethex(const char *buf, uint32_t *N);
char *getnum(char *txt, uint32_t *N);
char *omit_spaces(char *buf);
char *getint(char *txt, int32_t *I);
char *getfloat(char *str, float *f);