mirror of
https://github.com/cc65/cc65.git
synced 2025-02-05 04:37:23 +00:00
13 lines
282 B
ArmAsm
13 lines
282 B
ArmAsm
;
|
|
; Ullrich von Bassewitz, 2009-11-01
|
|
;
|
|
; void tgi_free_vectorfont (const tgi_vectorfont* font);
|
|
; /* Free a vector font that was previously loaded into memory. */
|
|
;
|
|
; This function is identical to free(void*)
|
|
;
|
|
|
|
.import _free
|
|
.export _tgi_free_vectorfont := _free
|
|
|