## b_util_lunar ### 数据结构 ```C //阴历数据结构 typedef struct { uint16_t year; uint8_t month; uint8_t day; } bLunarInfo_t; ``` ### 接口介绍 ```C //阳历转阴历 int bSolar2Lunar(uint16_t syear, uint8_t smonth, uint8_t sday, bLunarInfo_t *plunar); ```