From 292ac4738a980823072387033af7a97027405e54 Mon Sep 17 00:00:00 2001
From: Samo Penic <samo.penic@gmail.com>
Date: Thu, 03 Mar 2016 17:01:58 +0000
Subject: [PATCH] Reading type in python

---
 src/general.c |   15 +++++++++++++--
 1 files changed, 13 insertions(+), 2 deletions(-)

diff --git a/src/general.c b/src/general.c
index ed06398..1ada40d 100644
--- a/src/general.c
+++ b/src/general.c
@@ -1,12 +1,23 @@
+/* vim: set ts=4 sts=4 sw=4 noet : */
 #include<stdio.h>
 #include<stdlib.h>
 #include "general.h"
 #include<stdarg.h>
 
+#include <sys/time.h>
+#include <unistd.h>
+#include <time.h>
+
+
 ts_uint ts_fprintf(FILE *fd, char *fmt, ...){
 if(quiet) return TS_SUCCESS;
-    va_list ap;
-    va_start(ap,fmt);
+	va_list ap;
+	va_start(ap,fmt);
+	char tmbuf[255];
+	struct timeval now;
+  	gettimeofday(&now, 0);
+	strftime(tmbuf, sizeof tmbuf, "%Y-%m-%d %H:%M:%S", localtime(&now.tv_sec));
+fprintf(fd, "[%s] ",tmbuf); 
 vfprintf(fd, fmt, ap); /* Call vfprintf */
 va_end(ap); /* Cleanup the va_list */
 return TS_SUCCESS;

--
Gitblit v1.9.3