summaryrefslogtreecommitdiffstats
path: root/libc/docs
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2009-03-18 22:20:24 -0700
committerThe Android Open Source Project <initial-contribution@android.com>2009-03-18 22:20:24 -0700
commitedbe7fc97bab7ff0684053d1be564330689bf3ad (patch)
tree271db0992a091d68f17f073ba9573c4698f97ce1 /libc/docs
parent78bf5fc677a2d25d50598b01781eafacdb5e6afe (diff)
downloadbionic-edbe7fc97bab7ff0684053d1be564330689bf3ad.zip
bionic-edbe7fc97bab7ff0684053d1be564330689bf3ad.tar.gz
bionic-edbe7fc97bab7ff0684053d1be564330689bf3ad.tar.bz2
auto import //branches/master/...@140412
Diffstat (limited to 'libc/docs')
-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: