* localtime.c (TZ_STRLEN_MAX): Document that longer names work, albeit less efficiently. --- localtime.c | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/localtime.c b/localtime.c index 8ef529d5..2da68ab4 100644 --- a/localtime.c +++ b/localtime.c @@ -336,6 +336,8 @@ static struct state *const lclptr = &lclmem; static struct state *const gmtptr = &gmtmem; #endif /* State Farm */ +/* Maximum number of bytes in an efficiently-handled TZ string. + Longer strings work, albeit less efficiently. */ #ifndef TZ_STRLEN_MAX # define TZ_STRLEN_MAX 255 #endif /* !defined TZ_STRLEN_MAX */ -- 2.51.0
