LMMS
Loading...
Searching...
No Matches
ScratchString.h
Go to the documentation of this file.
1#pragma once
2#define SCRATCH_SIZE 128
3
4namespace zyncarla {
5
6//Fixed Size String Substitute
8{
9 ScratchString(void);
10 ScratchString(int num);
11 ScratchString(unsigned char num);
12 ScratchString(const char *str);
13
15
16 //operator const char*() const;
17
19};
20
21}
22
#define SCRATCH_SIZE
Definition ScratchString.h:2
unsigned s
Definition inflate.c:1555
Definition zynaddsubfx-src.cpp:569
ScratchString(void)
Definition ScratchString.cpp:7
char c_str[SCRATCH_SIZE]
Definition ScratchString.h:18
ScratchString operator+(const ScratchString s)
Definition ScratchString.cpp:30