1 // -*- C++ -*- 2 //===-------------------- support/android/wchar_support.c ------------------===// 3 // 4 // The LLVM Compiler Infrastructure 5 // 6 // This file is dual licensed under the MIT and the University of Illinois Open 7 // Source Licenses. See LICENSE.TXT for details. 8 // 9 //===----------------------------------------------------------------------===// 10 11 #ifndef LLVM_LIBCXX_SUPPORT_ANDROID_TIME_H 12 #define LLVM_LIBCXX_SUPPORT_ANDROID_TIME_H 13 14 #include_next <time.h> 15 #include <xlocale.h> 16 17 #ifdef __cplusplus 18 extern "C" { 19 #endif 20 21 size_t strftime_l(char *s, size_t maxsize, const char *format, 22 const struct tm * timeptr, locale_t locale); 23 24 #ifdef __cplusplus 25 } // extern "C" 26 #endif 27 28 #endif // LLVM_LIBCXX_SUPPORT_ANDROID_TIME_H 29