28#ifndef SDL_clipboard_h_
29#define SDL_clipboard_h_
char * SDL_GetClipboardText(void)
Get UTF-8 text from the clipboard, which must be freed with SDL_free()
SDL_bool SDL_HasClipboardText(void)
Returns a flag indicating whether the clipboard exists and contains a text string that is non-empty.
int SDL_SetClipboardText(const char *text)
Put UTF-8 text into the clipboard.
static char text[MAX_TEXT_LENGTH]