Files
nuki_hub/CharBuffer.h
2023-03-22 22:54:35 +01:00

13 lines
164 B
C++

#pragma once
#define CHAR_BUFFER_SIZE 4096
class CharBuffer
{
public:
static void initialize();
static char* get();
private:
static char* _buffer;
};