Looks like your program is written using C.
If you want to know time and date use #include librery.
string nombre;
time_t fecha;
struct tm *temp;
struct tm fecha_tm;
/* obtener fecha (time_t) */
/* obtener fecha (time_t) */
if ((fecha = time(NULL)) == (time_t) -1)
exit;
/* obtener fecha (struct tm) */
temp = localtime(&fecha);
memcpy(&fecha_tm, temp, sizeof fecha_tm);
nombre+=itos(fecha_tm.tm_mday);
nombre+=itos(fecha_tm.tm_mon+1);
nombre+=itos(fecha_tm.tm_year + 1900);
nombre+=".lg";
return nombre;
}
// Saber la hora para escribir en cada mensaje
string dar_hora()
{
string hora;
time_t fecha;
struct tm *temp;
struct tm fecha_tm;
/* obtener fecha (time_t) */
/* obtener fecha (time_t) */
if ((fecha = time(NULL)) == (time_t) -1)
exit;
/* obtener fecha (struct tm) */
temp = localtime(&fecha);
memcpy(&fecha_tm, temp, sizeof fecha_tm);
hora+=itos(fecha_tm.tm_hour);
hora+=":";
hora+=itos(fecha_tm.tm_min);
hora+=":";
hora+=itos(fecha_tm.tm_sec);
hora+=" --> ";
That's an example to use it.
#include <time.h>? – pmg Mar 2 '11 at 12:18time.h. Also,man gettimeofdayworks on OSX, whileman clock_gettimedoes not. – Delan Azabani Mar 2 '11 at 12:18cc -g `pkg-config --cflags libcurl glib-2.0 libpcre libconfuse` -D_POSIX_C_SOURCE=199309L -c getbooru-util.c– pmg Mar 2 '11 at 12:21clock_gettime, while Linux does. – Delan Azabani Mar 2 '11 at 12:26