view src/lib/utc-mktime.h @ 927:935d0b1df754 HEAD

Remove one of the previous speedups, it broke things
author Timo Sirainen <tss@iki.fi>
date Thu, 09 Jan 2003 01:35:09 +0200
parents efa46e28a0d7
children e4eb71ae8e96
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(struct tm *tm);

#endif