libxlsxwriter/examples/dates_and_times03.c

37 lines
1.0 KiB
C
Raw Normal View History

2014-06-08 17:40:59 +01:00
/*
2021-07-01 21:00:59 +01:00
* Example of writing dates and times in Excel using a Unix datetime and date
* formatting.
2014-06-08 17:40:59 +01:00
*
2025-02-11 00:03:36 +00:00
* Copyright 2014-2025, John McNamara, jmcnamara@cpan.org
2014-06-08 17:40:59 +01:00
*
*/
#include "xlsxwriter.h"
int main() {
/* Create a new workbook and add a worksheet. */
lxw_workbook *workbook = workbook_new("date_and_times03.xlsx");
2014-06-08 17:40:59 +01:00
lxw_worksheet *worksheet = workbook_add_worksheet(workbook, NULL);
2021-07-01 21:00:59 +01:00
/* Add a format with date formatting. */
lxw_format *format = workbook_add_format(workbook);
format_set_num_format(format, "mmm d yyyy hh:mm AM/PM");
2014-06-08 17:40:59 +01:00
2014-06-20 01:00:21 +01:00
/* Widen the first column to make the text clearer. */
2021-07-01 21:00:59 +01:00
worksheet_set_column(worksheet, 0, 0, 20, NULL);
2014-06-20 01:00:21 +01:00
2021-07-01 21:00:59 +01:00
/* Write some Unix datetimes with formatting. */
2014-06-08 17:40:59 +01:00
2021-07-01 21:00:59 +01:00
/* 1970-01-01. The Unix epoch. */
worksheet_write_unixtime(worksheet, 0, 0, 0, format);
2014-06-08 17:40:59 +01:00
2021-07-01 21:00:59 +01:00
/* 2000-01-01. */
worksheet_write_unixtime(worksheet, 1, 0, 1577836800LL, format);
2014-06-08 17:40:59 +01:00
2021-07-01 21:00:59 +01:00
/* 1900-01-01. */
worksheet_write_unixtime(worksheet, 2, 0, -2208988800LL, format);
2014-06-08 17:40:59 +01:00
return workbook_close(workbook);
}