I have a piece of optimized function to get the GMT time. I would like to convert it to local time. I would want to call localtime and gmtime function only once to adjust the time to localtime as calling localtime and gmtime multiple times would defeat the purpose of using the optimized function. My idea is adding the difference in time zone to the GMT time I obtained. However, my problem is how could I adjust my localtime when there is daylight saving? Any ideas on checking that?
Thanks.