summaryrefslogtreecommitdiff
path: root/lib/util/time_basic.h
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2014-07-29 20:54:44 +0200
committerMichael Adam <obnox@samba.org>2014-07-31 18:49:47 +0200
commit0753c1bec1ff5888068eeba5878c460ce07cef2a (patch)
tree76e80495aacf7826db900a850f7d44f4dfce8e24 /lib/util/time_basic.h
parent8799120abd07d4f3b243f473614d782fb7182bfc (diff)
downloadsamba-0753c1bec1ff5888068eeba5878c460ce07cef2a.tar.gz
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>
Diffstat (limited to 'lib/util/time_basic.h')
-rw-r--r--lib/util/time_basic.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/lib/util/time_basic.h b/lib/util/time_basic.h
new file mode 100644
index 00000000000..58bc02de3ca
--- /dev/null
+++ b/lib/util/time_basic.h
@@ -0,0 +1,42 @@
+/*
+ * 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);