MeshCore/src/helpers/TxtDataHelpers.h

14 lines
336 B
C
Raw Normal View History

#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
2025-02-22 19:41:24 +11:00
class StrHelper {
public:
static void strncpy(char* dest, const char* src, size_t buf_sz);
};