view src/lib/utc-mktime.h @ 9302:fc979053eaaa HEAD

autocreate: Fixed subscribe error message.
author Timo Sirainen <tss@iki.fi>
date Sun, 09 Aug 2009 14:58:22 -0400
parents 6d15946eccb5
children
line wrap: on
line source

#ifndef UTC_MKTIME_H
#define UTC_MKTIME_H

#include <time.h>

/* Like mktime(), but assume that tm is in UTC. Unlike mktime(), values in
   tm fields must be in valid range. */
time_t utc_mktime(const struct tm *tm);

#endif