some remake about stringHash4MCU_: modified to test with parameter and argument

This commit is contained in:
Edward Emelianov
2023-02-04 12:01:02 +03:00
parent 338b9cb4e2
commit 5260ddb3bb
22 changed files with 366 additions and 1186 deletions

13
stringHash4MCU_/strfunc.h Normal file
View File

@@ -0,0 +1,13 @@
#pragma once
#include <stdint.h>
#include <string.h>
void hexdump(int (*sendfun)(const char *s), uint8_t *arr, uint16_t len);
char *u2str(uint32_t val);
char *i2str(int32_t i);
char *uhex2str(uint32_t val);
const char *getnum(const char *txt, uint32_t *N);
const char *omit_spaces(const char *buf);
const char *getint(const char *txt, int32_t *I);
//void mymemcpy(char *dest, const char *src, int len);