Funzione libreria C - mktime ()

Descrizione

La funzione di libreria C. time_t mktime(struct tm *timeptr) converte la struttura puntata da timeptr in un valore time_t in base al fuso orario locale.

Dichiarazione

Di seguito è riportata la dichiarazione per la funzione mktime ().

time_t mktime(struct tm *timeptr)

Parametri

  • timeptr- Questo è il puntatore a un valore time_t che rappresenta l'ora del calendario, suddiviso nei suoi componenti. Di seguito è riportato il dettaglio della struttura timeptr

struct tm {
   int tm_sec;         /* seconds,  range 0 to 59          */
   int tm_min;         /* minutes, range 0 to 59           */
   int tm_hour;        /* hours, range 0 to 23             */
   int tm_mday;        /* day of the month, range 1 to 31  */
   int tm_mon;         /* month, range 0 to 11             */
   int tm_year;        /* The number of years since 1900   */
   int tm_wday;        /* day of the week, range 0 to 6    */
   int tm_yday;        /* day in the year, range 0 to 365  */
   int tm_isdst;       /* daylight saving time             */	
};

Valore di ritorno

Questa funzione restituisce un valore time_t corrispondente all'ora del calendario passata come argomento. In caso di errore, viene restituito un valore -1.

Esempio

L'esempio seguente mostra l'utilizzo della funzione mktime ().

#include 
      
        #include 
       
         int main () { int ret; struct tm info; char buffer[80]; info.tm_year = 2001 - 1900; info.tm_mon = 7 - 1; info.tm_mday = 4; info.tm_hour = 0; info.tm_min = 0; info.tm_sec = 1; info.tm_isdst = -1; ret = mktime(&info); if( ret == -1 ) { printf("Error: unable to make time using mktime\n"); } else { strftime(buffer, sizeof(buffer), "%c", &info ); printf(buffer); } return(0); } 
       
      

Compiliamo ed eseguiamo il programma sopra che produrrà il seguente risultato:

Wed Jul 4 00:00:01 2001