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.
		
		
		
		
		
			
	
	
		
			
				
					
						
						
							|  | #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];
};
}
 |