You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
469 B
C
23 lines
469 B
C
/***************************************************************************
|
|
* Interface declaration for function in gmtime64.c.
|
|
*
|
|
* See gmtime.c for copyright and license.
|
|
***************************************************************************/
|
|
|
|
#ifndef GMTIME64_H
|
|
#define GMTIME64_H 1
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "libmseed.h"
|
|
|
|
extern struct tm * ms_gmtime64_r (const int64_t *in_time, struct tm *p);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|