1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00
samba-mirror/lib/util/time_basic.h
Volker Lendecke 0753c1bec1 lib: Create time_basic.[ch]
Make the two functions that debug.c needs a subsystem of their own. The
goal is to put debug.c on a diet. Anybody who wants to use it should
not be forced to pull in half of Samba :-)

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Michael Adam <obnox@samba.org>
2014-07-31 18:49:47 +02:00

43 lines
1.3 KiB
C

/*
* Unix SMB/CIFS implementation.
* time handling functions
*
* Copyright (C) Andrew Tridgell 1992-2004
* Copyright (C) Stefan (metze) Metzmacher 2002
* Copyright (C) Jeremy Allison 2007
* Copyright (C) Andrew Bartlett 2011
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "replace.h"
#include "system/time.h"
/**
a gettimeofday wrapper
**/
_PUBLIC_ void GetTimeOfDay(struct timeval *tval);
struct timeval_buf { char buf[128]; };
/**
Put a date and time into dst->buf, return it dst->buf
(optionally with microseconds)
format is %Y/%m/%d %H:%M:%S if strftime is available
**/
char *timeval_str_buf(const struct timeval *tp, bool hires,
struct timeval_buf *dst);