-
Notifications
You must be signed in to change notification settings - Fork 2
raylib.TextCopy
JoeStrout edited this page Apr 29, 2026
·
2 revisions
Copy one string to another, returns bytes copied NOTE: Alternative implementation to strcpy(dst, src) from C standard library
| Parameter | Default Value | Note |
|---|---|---|
| dst | ||
| src |
| Condition | Return Value |
|---|---|
| (always) | number |
// Copy one string to another
bytesCopied = raylib.TextCopy("destination", "Hello!")
print bytesCopied // 6