/** * @file osw_time.h * @brief osw 時刻関連機能 ヘッダー * 時刻に関する機能をまとめたヘッダーファイルです. * * Copyright (c) 2003 - 2015 Nomura Kei * License : THE MIT License <http://opensource.org/licenses/mit-license.php> */ #ifndef OSW_TIME_H #define OSW_TIME_H #include <stdint.h> typedef struct { uint32_t _sec; /**< 秒. */ uint32_t _nsec; /**< ナノ秒. */ } OSWDate; OSWDate* OSWDate_new(void); : #include <time.h> #endif /* OSW_TIME_H */