mirror of
https://github.com/raysan5/raylib.git
synced 2025-09-12 06:18:14 +00:00
ADDED: TextCopy() #1083
This commit is contained in:
@@ -1204,6 +1204,7 @@ RLAPI int GetGlyphIndex(Font font, int codepoint);
|
||||
|
||||
// Text strings management functions (no utf8 strings, only byte chars)
|
||||
// NOTE: Some strings allocate memory internally for returned strings, just be careful!
|
||||
RLAPI int TextCopy(char *dst, const char *src); // Copy one string to another, returns bytes copied
|
||||
RLAPI bool TextIsEqual(const char *text1, const char *text2); // Check if two text string are equal
|
||||
RLAPI unsigned int TextLength(const char *text); // Get text length, checks for '\0' ending
|
||||
RLAPI const char *TextFormat(const char *text, ...); // Text formatting with variables (sprintf style)
|
||||
|
Reference in New Issue
Block a user