| The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 1 | /* | 
|  | 2 |  | 
|  | 3 | Copyright (c) 2007-2008  Michael G Schwern | 
|  | 4 |  | 
|  | 5 | This software originally derived from Paul Sheer's pivotal_gmtime_r.c. | 
|  | 6 |  | 
|  | 7 | The MIT License: | 
|  | 8 |  | 
|  | 9 | Permission is hereby granted, free of charge, to any person obtaining a copy | 
|  | 10 | of this software and associated documentation files (the "Software"), to deal | 
|  | 11 | in the Software without restriction, including without limitation the rights | 
|  | 12 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | 
|  | 13 | copies of the Software, and to permit persons to whom the Software is | 
|  | 14 | furnished to do so, subject to the following conditions: | 
|  | 15 |  | 
|  | 16 | The above copyright notice and this permission notice shall be included in | 
|  | 17 | all copies or substantial portions of the Software. | 
|  | 18 |  | 
|  | 19 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | 
|  | 20 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | 
|  | 21 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | 
|  | 22 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | 
|  | 23 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | 
|  | 24 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | 
|  | 25 | THE SOFTWARE. | 
|  | 26 |  | 
|  | 27 | Origin: http://code.google.com/p/y2038 | 
|  | 28 | Modified for Bionic by the Android Open Source Project | 
|  | 29 |  | 
|  | 30 | */ | 
|  | 31 | #ifndef TIME64_H | 
|  | 32 | #define TIME64_H | 
|  | 33 |  | 
| Elliott Hughes | 8d77bce | 2014-04-22 13:55:58 -0700 | [diff] [blame] | 34 | #if defined(__LP64__) | 
|  | 35 |  | 
| Elliott Hughes | 52defb7 | 2014-05-05 17:14:02 -0700 | [diff] [blame] | 36 | #error Your time_t is already 64-bit. | 
| Elliott Hughes | 8d77bce | 2014-04-22 13:55:58 -0700 | [diff] [blame] | 37 |  | 
|  | 38 | #else | 
|  | 39 |  | 
|  | 40 | /* Legacy cruft for LP32 where time_t was 32-bit. */ | 
|  | 41 |  | 
| Fred Fettinger | b5239ed | 2009-11-20 16:57:14 -0600 | [diff] [blame] | 42 | #include <sys/cdefs.h> | 
| The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 43 | #include <time.h> | 
|  | 44 | #include <stdint.h> | 
|  | 45 |  | 
| Fred Fettinger | b5239ed | 2009-11-20 16:57:14 -0600 | [diff] [blame] | 46 | __BEGIN_DECLS | 
|  | 47 |  | 
| Elliott Hughes | 8d77bce | 2014-04-22 13:55:58 -0700 | [diff] [blame] | 48 | typedef int64_t time64_t; | 
| The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 49 |  | 
| Elliott Hughes | 8d77bce | 2014-04-22 13:55:58 -0700 | [diff] [blame] | 50 | char* asctime64(const struct tm*); | 
|  | 51 | char* asctime64_r(const struct tm*, char*); | 
|  | 52 | char* ctime64(const time64_t*); | 
|  | 53 | char* ctime64_r(const time64_t*, char*); | 
|  | 54 | struct tm* gmtime64(const time64_t*); | 
|  | 55 | struct tm* gmtime64_r(const time64_t*, struct tm*); | 
|  | 56 | struct tm* localtime64(const time64_t*); | 
|  | 57 | struct tm* localtime64_r(const time64_t*, struct tm*); | 
|  | 58 | time64_t mktime64(const struct tm*); | 
|  | 59 | time64_t timegm64(const struct tm*); | 
|  | 60 | time64_t timelocal64(const struct tm*); | 
| The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 61 |  | 
| Fred Fettinger | b5239ed | 2009-11-20 16:57:14 -0600 | [diff] [blame] | 62 | __END_DECLS | 
|  | 63 |  | 
| Elliott Hughes | 8d77bce | 2014-04-22 13:55:58 -0700 | [diff] [blame] | 64 | #endif | 
|  | 65 |  | 
| The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 66 | #endif /* TIME64_H */ |