Changelog:
r44814 | compyx | 2023-11-30 15:25:26 +0000 (Thu, 30 Nov 2023) | 2 lines
Fix capitalization of resource name "DosName1541ii"
------------------------------------------------------------------------
r44813 | compyx | 2023-11-30 15:17:39 +0000 (Thu, 30 Nov 2023) | 2 lines
Fix `TYPE* NAME` parameter/variable declarations, we are not barbarians
------------------------------------------------------------------------
r44812 | compyx | 2023-11-30 15:04:19 +0000 (Thu, 30 Nov 2023) | 4 lines
Add function `resources_exists()`
Add function to determine if a resource exists for the current emulator.
------------------------------------------------------------------------
r44811 | pottendo | 2023-11-29 21:55:46 +0000 (Wed, 29 Nov 2023) | 2 lines
wic64: aligned legacy protocol to new firmware behavior
------------------------------------------------------------------------
r44810 | compyx | 2023-11-29 07:41:06 +0000 (Wed, 29 Nov 2023) | 8 lines
Fix -Wstringop-truncation warning and possible buffer overflow bug
Pass the size of the buffer as the length argument to `strncpy()`, don't use the
input string length to terminate the buffer with a nul character (which can be
longer than the buffer allows), but always write a nul character as the final
character in the buffer in case `strncpy()` doesn't pad the buffer with nul if
the input string length is, or exceeds, the buffer length.
------------------------------------------------------------------------