mirror of
https://github.com/mikecarper/MeshCore.git
synced 2026-09-17 07:34:20 +00:00
24 lines
1.1 KiB
C++
24 lines
1.1 KiB
C++
#pragma once
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#define TXT_TYPE_PLAIN 0 // a plain text message
|
|
#define TXT_TYPE_CLI_DATA 1 // a CLI command
|
|
#define TXT_TYPE_SIGNED_PLAIN 2 // plain text, signed by sender
|
|
#define DATA_TYPE_RESERVED 0x0000 // reserved for future use
|
|
#define DATA_TYPE_DEV 0xFFFF // developer namespace for experimenting with group/channel datagrams and building apps
|
|
|
|
class StrHelper {
|
|
public:
|
|
static void strncpy(char* dest, const char* src, size_t buf_sz);
|
|
static void strzcpy(char* dest, const char* src, size_t buf_sz); // pads with trailing nulls
|
|
/** Remove one leading and one trailing ASCII " or ' if present (in-place). No-op if empty. */
|
|
static void stripSurroundingQuotes(char* str, size_t buf_sz);
|
|
static const char* ftoa(float f);
|
|
static const char* ftoa3(float f); //Converts float to string with 3 decimal places
|
|
static bool ftoaFixed(char* dest, size_t dest_size, float value, uint8_t precision);
|
|
static bool isBlank(const char* str);
|
|
static uint32_t fromHex(const char* src);
|
|
};
|