blob: 41b00a4530ef920bfc6830f37b5b0566c969644d [file]
//========================================================================
//
// glibc.h
//
// Emulate various non-portable glibc functions.
//
// This file is licensed under the GPLv2 or later
//
// Copyright (C) 2016, 2017 Adrian Johnson <ajohnson@redneon.com>
// Copyright (C) 2017, 2025 Albert Astals Cid <aacid@kde.org>
//
//========================================================================
#ifndef GLIBC_H
#define GLIBC_H
#include "config.h"
#include "poppler_private_export.h"
#include <ctime>
#if !HAVE_GMTIME_R
struct tm POPPLER_PRIVATE_EXPORT *gmtime_r(const time_t *timep, struct tm *result);
#endif
#if !HAVE_LOCALTIME_R
struct tm POPPLER_PRIVATE_EXPORT *localtime_r(const time_t *timep, struct tm *result);
#endif
#if !HAVE_TIMEGM
time_t POPPLER_PRIVATE_EXPORT timegm(struct tm *tm);
#endif
#if !HAVE_STRTOK_R
char *strtok_r(char *s, const char *delim, char **save_ptr);
#endif
#endif // GLIBC_H