You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/raylib.h
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1539,11 +1539,11 @@ RLAPI const char *TextSubtext(const char *text, int position, int length);
1539
1539
RLAPIconstchar*TextRemoveSpaces(constchar*text); // Remove text spaces, concat words
1540
1540
RLAPIchar*GetTextBetween(constchar*text, constchar*begin, constchar*end); // Get text between two strings
1541
1541
RLAPIchar*TextReplace(constchar*text, constchar*search, constchar*replacement); // Replace text string with new string
1542
-
RLAPIchar*TextReplaceAlloc(constchar*text, constchar*search, constchar*replacement); // Replace text string with new string, memory must be MemFree()
1542
+
RLAPIchar*TextReplaceAlloc(constchar*text, constchar*search, constchar*replacement); // Replace text string with new string, memory must be MemFree()
1543
1543
RLAPIchar*TextReplaceBetween(constchar*text, constchar*begin, constchar*end, constchar*replacement); // Replace text between two specific strings
1544
1544
RLAPIchar*TextReplaceBetweenAlloc(constchar*text, constchar*begin, constchar*end, constchar*replacement); // Replace text between two specific strings, memory must be MemFree()
1545
1545
RLAPIchar*TextInsert(constchar*text, constchar*insert, intposition); // Insert text in a defined byte position
1546
-
RLAPIchar*TextInsertAlloc(constchar*text, constchar*insert, intposition); // Insert text in a defined byte position, memory must be MemFree()
1546
+
RLAPIchar*TextInsertAlloc(constchar*text, constchar*insert, intposition); // Insert text in a defined byte position, memory must be MemFree()
1547
1547
RLAPIchar*TextJoin(char**textList, intcount, constchar*delimiter); // Join text strings with delimiter
1548
1548
RLAPIchar**TextSplit(constchar*text, chardelimiter, int*count); // Split text into multiple strings, using MAX_TEXTSPLIT_COUNT static strings
1549
1549
RLAPIvoidTextAppend(char*text, constchar*append, int*position); // Append text at specific position and move cursor
0 commit comments