@@ -884,6 +884,8 @@ RLAPI int GetMonitorHeight(int monitor); // Get primary
884
884
RLAPI int GetMonitorPhysicalWidth (int monitor ); // Get primary monitor physical width in millimetres
885
885
RLAPI int GetMonitorPhysicalHeight (int monitor ); // Get primary monitor physical height in millimetres
886
886
RLAPI const char * GetMonitorName (int monitor ); // Get the human-readable, UTF-8 encoded name of the primary monitor
887
+ RLAPI const char * GetClipboardText (void ); // Get clipboard text content
888
+ RLAPI void SetClipboardText (const char * text ); // Set clipboard text content
887
889
888
890
// Cursor-related functions
889
891
RLAPI void ShowCursor (void ); // Shows cursor
@@ -1176,8 +1178,7 @@ RLAPI const char *TextSubtext(const char *text, int position, int length);
1176
1178
RLAPI const char * TextReplace (char * text , const char * replace , const char * by ); // Replace text string (memory should be freed!)
1177
1179
RLAPI const char * TextInsert (const char * text , const char * insert , int position ); // Insert text in a position (memory should be freed!)
1178
1180
RLAPI const char * TextJoin (const char * * textList , int count , const char * delimiter ); // Join text strings with delimiter
1179
- RLAPI char * * TextSplit (const char * text , char delimiter , int * count ); // Split text into multiple strings (memory should be freed!)
1180
- RLAPI void TextSplitEx (const char * text , char delimiter , int * count , const char * * ptrs , int * lengths ); // Get pointers to substrings separated by delimiter
1181
+ RLAPI const char * * TextSplit (const char * text , char delimiter , int * count ); // Split text into multiple strings
1181
1182
RLAPI void TextAppend (char * text , const char * append , int * position ); // Append text at specific position and move cursor!
1182
1183
RLAPI int TextFindIndex (const char * text , const char * find ); // Find first text occurrence within a string
1183
1184
RLAPI const char * TextToUpper (const char * text ); // Get upper case version of provided string
0 commit comments