mirror of
https://github.com/VincentWei/MiniGUI.git
synced 2025-05-10 00:29:22 +08:00
11 lines
156 B
C
11 lines
156 B
C
|
|
char * buffer = FixStrAlloc (strlen ("Hello, world!"));
|
|
|
|
if (buffer)
|
|
strcpy (buffer, "Hello, world!");
|
|
|
|
...
|
|
|
|
FreeFixStr (buffer);
|
|
|