|
12345678910111213141516171819202122 |
- #pragma once
- #define SCRATCH_SIZE 128
-
- namespace zyncarla {
-
- //Fixed Size String Substitute
- struct ScratchString
- {
- ScratchString(void);
- ScratchString(int num);
- ScratchString(unsigned char num);
- ScratchString(const char *str);
-
- ScratchString operator+(const ScratchString s);
-
- //operator const char*() const;
-
- char c_str[SCRATCH_SIZE];
- };
-
- }
-
|