* CommonCLI: "get " commands

This commit is contained in:
Scott Powell 2025-02-27 18:02:47 +11:00
parent e32fea0745
commit afd9cf2743
3 changed files with 144 additions and 0 deletions

View file

@ -11,4 +11,5 @@ 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
static const char* ftoa(float f);
};