From 640559eba68e9d3cc0840fa745cff38f41adcc3f Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Mon, 9 Sep 2024 15:56:42 -0700 Subject: [PATCH] Added migration documentation for SDL_strtoll(), SDL_strtoull(), SDL_lltoa(), and SDL_ulltoa(). --- docs/README-migration.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/README-migration.md b/docs/README-migration.md index 805a295dca..e4de4e1455 100644 --- a/docs/README-migration.md +++ b/docs/README-migration.md @@ -1732,6 +1732,8 @@ SDL3 attempts to apply consistency to case-insensitive string functions. In SDL2 Please note that the case-folding technique used by SDL3 will not produce correct results for the "Turkish 'I'"; this one letter is a surprisingly hard problem in the Unicode world, and since these functions do not specify the human language in use, we have chosen to ignore this problem. +SDL_strtoll(), SDL_strtoull(), SDL_lltoa(), and SDL_ulltoa() use long long values instead of 64-bit values, to match their C runtime counterparts. + The following macros have been removed: * SDL_TABLESIZE() - use SDL_arraysize() instead