i am using GetTimeZoneInformation in windows…but not able to find any equivalent in linux.
Any idea??
i am using GetTimeZoneInformation in windows…but not able to find any equivalent in linux.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
i figured it out after some more debugging time related structures.
Its better to use
struct tm * gmtime ( const time_t * timer )which wll give the UTC time.And can use
tzset()andtzname[0]to get the timezone info.