MiniGUI/examples/fixstr.c
2017-05-29 12:20:05 +08:00

11 lines
156 B
C

char * buffer = FixStrAlloc (strlen ("Hello, world!"));
if (buffer)
strcpy (buffer, "Hello, world!");
...
FreeFixStr (buffer);