// Copyright 2014 The PDFium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com #ifndef CORE_FXCRT_CFX_DATETIME_H_ #define CORE_FXCRT_CFX_DATETIME_H_ #include <stdint.h> bool FX_IsLeapYear(int32_t iYear); uint8_t FX_DaysInMonth(int32_t iYear, uint8_t iMonth); class CFX_DateTime { … }; #endif // CORE_FXCRT_CFX_DATETIME_H_