开发者

Libraries for date validation in C?

开发者 https://www.devze.com 2023-03-26 05:52 出处:网络
I have a struct of values for a date. struct date { int day; int month; int year; }; 开发者_JS百科Are there any libraries for C for quick and easy date validation.The standard C library function mk

I have a struct of values for a date.

struct date
{
    int day;
    int month;
    int year;
};

开发者_JS百科Are there any libraries for C for quick and easy date validation.


The standard C library function mktime() will convert year/month/day (really a full struct tm) to a time_t, and tell you if something went wrong.

0

精彩评论

暂无评论...
验证码 换一张
取 消