]> git.ipfire.org Git - thirdparty/squid.git/blame - src/tests/stub_time.cc
Source Format Enforcement (#532)
[thirdparty/squid.git] / src / tests / stub_time.cc
CommitLineData
4e0938ef 1/*
77b1029d 2 * Copyright (C) 1996-2020 The Squid Software Foundation and contributors
4e0938ef
AJ
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
8
8a1e7035
FC
9#include "squid.h"
10#include "SquidTime.h"
11
12#define STUB_API "time.cc"
13#include "STUB.h"
14
15struct timeval current_time;
16double current_dtime;
17time_t squid_curtime = 0;
18
9c1b536f 19time_t getCurrentTime(void) STUB_RETVAL(0)
9c08fea2 20int tvSubMsec(struct timeval, struct timeval) STUB_RETVAL(0)
604ca20e
CT
21void tvSub(timeval&, timeval const&, timeval const&) STUB
22void tvAssignAdd(timeval&, timeval const&) STUB
23
9c08fea2
AJ
24const char * Time::FormatStrf(time_t ) STUB_RETVAL("")
25const char * Time::FormatHttpd(time_t ) STUB_RETVAL("")
27782a42
FC
26
27void TimeEngine::tick() STUB
28TimeEngine::~TimeEngine() STUB
29