File: localtime_r.h

package info (click to toggle)
gnucash 1%3A2.6.11-1~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 108,532 kB
  • sloc: ansic: 379,389; lisp: 44,627; sh: 12,083; makefile: 6,682; python: 5,924; xml: 4,407; cpp: 2,014; perl: 684
file content (10 lines) | stat: -rw-r--r-- 236 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
#ifndef __LOCALTIME_R_H__
#define __LOCALTIME_R_H__
#include <time.h>
/*
 * Version of "localtime_r()", for the benefit of OSes that don't have it.
 */
extern struct tm *localtime_r(const time_t *const timep, struct tm *p_tm);

#endif