Files
dolphin/Source/Core/Core
Léo Lam 89b0ab2d22 StringUtil: Add IsPrintableCharacter and use it
Add a function that safely returns whether a character is printable
i.e. whether 0x20 <= c <= 0x7e is true.

This is done in several places in our codebase and it's easy to run
into undefined behaviour if the C version defined in <cctype>
is used instead of this one, since its behaviour is undefined
if the character is not representable as an unsigned char.

This fixes MemoryViewWidget.
2020-01-16 00:22:26 +01:00
..
2020-01-04 12:11:39 +01:00
2018-10-29 23:00:51 +01:00
2019-10-04 13:40:21 +10:00
2019-12-18 22:20:11 -08:00
2020-01-04 11:43:33 -08:00
2018-06-03 20:45:35 +02:00
2019-06-20 11:50:02 -04:00
2018-07-19 18:09:20 -04:00
2019-07-18 22:29:04 +02:00