summaryrefslogtreecommitdiffstats
path: root/libc/docs/OVERVIEW.TXT
diff options
context:
space:
mode:
authorJean-Baptiste Queru <jbq@google.com>2009-11-15 12:05:31 -0800
committerJean-Baptiste Queru <jbq@google.com>2009-11-15 12:05:31 -0800
commit95604529ec25fe7923ba88312c590f38aa5e3d9e (patch)
treec6f1dd860fcdc273ab21b696778987261f6e4fa8 /libc/docs/OVERVIEW.TXT
parent71c0aeb44f2301af85d6a370dbd7308602a1dfe0 (diff)
parent194d3fa048cf909ca592dd56fa538dc9cd3f5ddb (diff)
downloadbionic-95604529ec25fe7923ba88312c590f38aa5e3d9e.zip
bionic-95604529ec25fe7923ba88312c590f38aa5e3d9e.tar.gz
bionic-95604529ec25fe7923ba88312c590f38aa5e3d9e.tar.bz2
merge from eclair
Diffstat (limited to 'libc/docs/OVERVIEW.TXT')
-rw-r--r--libc/docs/OVERVIEW.TXT12
1 files changed, 12 insertions, 0 deletions
diff --git a/libc/docs/OVERVIEW.TXT b/libc/docs/OVERVIEW.TXT
index 4c153b1..753e48a 100644
--- a/libc/docs/OVERVIEW.TXT
+++ b/libc/docs/OVERVIEW.TXT
@@ -63,6 +63,18 @@ time_t:
Instead, Bionic provides a <time64.h> header that defines a time64_t type,
and related functions like mktime64(), localtime64(), etc...
+ strftime() uses time64_t internally, so the '%s' format (seconds since the
+ epoch) is supported for dates >= 2038.
+
+
+strftime_tz():
+
+ Bionic also provides the non-standard strftime_tz() function, a variant
+ of strftime() which also accepts a time locale descriptor as defined
+ by "struct strftime_locale" in <time.h>.
+
+ This function is used by the low-level framework code in Android.
+
Timezone management: