Is there any possibility to determine is Daylight Saving Time (DST) now in Tizen Native Application (pure C) for wearable device (Gear S2/S3), because after:
time_t rawtime;
time(&rawtime);
struct tm *tm_local;
tm_local = localtime(&rawtime);
field tm_local->tm_isdst
is always 0
(even for DST dates).