Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
344B

  1. #pragma once
  2. #define SCRATCH_SIZE 128
  3. //Fixed Size String Substitute
  4. struct ScratchString
  5. {
  6. ScratchString(void);
  7. ScratchString(int num);
  8. ScratchString(unsigned char num);
  9. ScratchString(const char *str);
  10. ScratchString operator+(const ScratchString s);
  11. //operator const char*() const;
  12. char c_str[SCRATCH_SIZE];
  13. };