diff options
author | Eric Fischer <enf@google.com> | 2009-05-15 10:15:18 -0700 |
---|---|---|
committer | The Android Open Source Project <initial-contribution@android.com> | 2009-05-15 10:15:18 -0700 |
commit | 035b427c703e24d583be7aef9923a85327d8b546 (patch) | |
tree | b61e0defdacbdb02cfde2334f463c8df260ce512 /include | |
parent | 9ded6bb1e1fbdecb47cee03529ebc9f0adfa40ee (diff) | |
parent | 722a5c0462f38827f4097065bfc3826b9e0e9fb4 (diff) | |
download | system_core-035b427c703e24d583be7aef9923a85327d8b546.zip system_core-035b427c703e24d583be7aef9923a85327d8b546.tar.gz system_core-035b427c703e24d583be7aef9923a85327d8b546.tar.bz2 |
am 722a5c04: Add support for "standalone months" to tztime\'s strftime().
Merge commit '722a5c0462f38827f4097065bfc3826b9e0e9fb4'
* commit '722a5c0462f38827f4097065bfc3826b9e0e9fb4':
Add support for "standalone months" to tztime's strftime().
Diffstat (limited to 'include')
-rw-r--r-- | include/cutils/tztime.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/cutils/tztime.h b/include/cutils/tztime.h index 4af2ce4..cf103ca 100644 --- a/include/cutils/tztime.h +++ b/include/cutils/tztime.h @@ -32,6 +32,7 @@ void localtime_tz(const time_t * const timep, struct tm * tmp, const char* tz); struct strftime_locale { const char *mon[12]; /* short names */ const char *month[12]; /* long names */ + const char *standalone_month[12]; /* long standalone names */ const char *wday[7]; /* short names */ const char *weekday[7]; /* long names */ const char *X_fmt; |