-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update libxlsxwriter to version 0.8.5
- Loading branch information
Showing
39 changed files
with
62 additions
and
62 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* libxlsxwriter | ||
* | ||
* Copyright 2014-2018, John McNamara, [email protected]. See LICENSE.txt. | ||
* Copyright 2014-2019, John McNamara, [email protected]. See LICENSE.txt. | ||
*/ | ||
|
||
/** | ||
|
@@ -18,6 +18,6 @@ | |
#include "xlsxwriter/format.h" | ||
#include "xlsxwriter/utility.h" | ||
|
||
#define LXW_VERSION "0.8.4" | ||
#define LXW_VERSION "0.8.5" | ||
|
||
#endif /* __LXW_XLSXWRITER_H__ */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* libxlsxwriter | ||
* | ||
* Copyright 2014-2018, John McNamara, [email protected]. See LICENSE.txt. | ||
* Copyright 2014-2019, John McNamara, [email protected]. See LICENSE.txt. | ||
* | ||
* app - A libxlsxwriter library for creating Excel XLSX app files. | ||
* | ||
|
@@ -56,7 +56,7 @@ extern "C" { | |
#endif | ||
/* *INDENT-ON* */ | ||
|
||
lxw_app *lxw_app_new(); | ||
lxw_app *lxw_app_new(void); | ||
void lxw_app_free(lxw_app *app); | ||
void lxw_app_assemble_xml_file(lxw_app *self); | ||
void lxw_app_add_part_name(lxw_app *self, const char *name); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* libxlsxwriter | ||
* | ||
* Copyright 2014-2018, John McNamara, [email protected]. See LICENSE.txt. | ||
* Copyright 2014-2019, John McNamara, [email protected]. See LICENSE.txt. | ||
* | ||
* chart - A libxlsxwriter library for creating Excel XLSX chart files. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* libxlsxwriter | ||
* | ||
* Copyright 2014-2018, John McNamara, [email protected]. See LICENSE.txt. | ||
* Copyright 2014-2019, John McNamara, [email protected]. See LICENSE.txt. | ||
* | ||
* chartsheet - A libxlsxwriter library for creating Excel XLSX chartsheet files. | ||
* | ||
|
@@ -524,7 +524,7 @@ lxw_error chartsheet_set_footer_opt(lxw_chartsheet *chartsheet, | |
const char *string, | ||
lxw_header_footer_options *options); | ||
|
||
lxw_chartsheet *lxw_chartsheet_new(); | ||
lxw_chartsheet *lxw_chartsheet_new(lxw_worksheet_init_data *init_data); | ||
void lxw_chartsheet_free(lxw_chartsheet *chartsheet); | ||
void lxw_chartsheet_assemble_xml_file(lxw_chartsheet *chartsheet); | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
/* | ||
* libxlsxwriter | ||
* | ||
* Copyright 2014-2018, John McNamara, [email protected]. See LICENSE.txt. | ||
* Copyright 2014-2019, John McNamara, [email protected]. See LICENSE.txt. | ||
*/ | ||
|
||
/** | ||
* @file common.h | ||
* | ||
* @brief Common functions and defines for the libxlsxwriter library. | ||
* | ||
* <!-- Copyright 2014-2018, John McNamara, [email protected] --> | ||
* <!-- Copyright 2014-2019, John McNamara, [email protected] --> | ||
* | ||
*/ | ||
#ifndef __LXW_COMMON_H__ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* libxlsxwriter | ||
* | ||
* Copyright 2014-2018, John McNamara, [email protected]. See LICENSE.txt. | ||
* Copyright 2014-2019, John McNamara, [email protected]. See LICENSE.txt. | ||
* | ||
* content_types - A libxlsxwriter library for creating Excel XLSX | ||
* content_types files. | ||
|
@@ -37,7 +37,7 @@ extern "C" { | |
#endif | ||
/* *INDENT-ON* */ | ||
|
||
lxw_content_types *lxw_content_types_new(); | ||
lxw_content_types *lxw_content_types_new(void); | ||
void lxw_content_types_free(lxw_content_types *content_types); | ||
void lxw_content_types_assemble_xml_file(lxw_content_types *content_types); | ||
void lxw_ct_add_default(lxw_content_types *content_types, const char *key, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* libxlsxwriter | ||
* | ||
* Copyright 2014-2018, John McNamara, [email protected]. See LICENSE.txt. | ||
* Copyright 2014-2019, John McNamara, [email protected]. See LICENSE.txt. | ||
* | ||
* core - A libxlsxwriter library for creating Excel XLSX core files. | ||
* | ||
|
@@ -31,7 +31,7 @@ extern "C" { | |
#endif | ||
/* *INDENT-ON* */ | ||
|
||
lxw_core *lxw_core_new(); | ||
lxw_core *lxw_core_new(void); | ||
void lxw_core_free(lxw_core *core); | ||
void lxw_core_assemble_xml_file(lxw_core *self); | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* libxlsxwriter | ||
* | ||
* Copyright 2014-2018, John McNamara, [email protected]. See LICENSE.txt. | ||
* Copyright 2014-2019, John McNamara, [email protected]. See LICENSE.txt. | ||
* | ||
* custom - A libxlsxwriter library for creating Excel custom property files. | ||
* | ||
|
@@ -32,7 +32,7 @@ extern "C" { | |
#endif | ||
/* *INDENT-ON* */ | ||
|
||
lxw_custom *lxw_custom_new(); | ||
lxw_custom *lxw_custom_new(void); | ||
void lxw_custom_free(lxw_custom *custom); | ||
void lxw_custom_assemble_xml_file(lxw_custom *self); | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* libxlsxwriter | ||
* | ||
* Copyright 2014-2018, John McNamara, [email protected]. See LICENSE.txt. | ||
* Copyright 2014-2019, John McNamara, [email protected]. See LICENSE.txt. | ||
* | ||
* drawing - A libxlsxwriter library for creating Excel XLSX drawing files. | ||
* | ||
|
@@ -90,7 +90,7 @@ extern "C" { | |
#endif | ||
/* *INDENT-ON* */ | ||
|
||
lxw_drawing *lxw_drawing_new(); | ||
lxw_drawing *lxw_drawing_new(void); | ||
void lxw_drawing_free(lxw_drawing *drawing); | ||
void lxw_drawing_assemble_xml_file(lxw_drawing *self); | ||
void lxw_free_drawing_object(struct lxw_drawing_object *drawing_object); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* libxlsxwriter | ||
* | ||
* Copyright 2014-2018, John McNamara, [email protected]. See LICENSE.txt. | ||
* Copyright 2014-2019, John McNamara, [email protected]. See LICENSE.txt. | ||
*/ | ||
|
||
/** | ||
|
@@ -480,7 +480,7 @@ extern "C" { | |
#endif | ||
/* *INDENT-ON* */ | ||
|
||
lxw_format *lxw_format_new(); | ||
lxw_format *lxw_format_new(void); | ||
void lxw_format_free(lxw_format *format); | ||
int32_t lxw_format_get_xf_index(lxw_format *format); | ||
lxw_font *lxw_format_get_font_key(lxw_format *format); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* libxlsxwriter | ||
* | ||
* Copyright 2014-2018, John McNamara, [email protected]. See LICENSE.txt. | ||
* Copyright 2014-2019, John McNamara, [email protected]. See LICENSE.txt. | ||
* | ||
* hash_table - Hash table functions for libxlsxwriter. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* libxlsxwriter | ||
* | ||
* Copyright 2014-2018, John McNamara, [email protected]. See LICENSE.txt. | ||
* Copyright 2014-2019, John McNamara, [email protected]. See LICENSE.txt. | ||
* | ||
* packager - A libxlsxwriter library for creating Excel XLSX packager files. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* libxlsxwriter | ||
* | ||
* Copyright 2014-2018, John McNamara, [email protected]. See LICENSE.txt. | ||
* Copyright 2014-2019, John McNamara, [email protected]. See LICENSE.txt. | ||
* | ||
* relationships - A libxlsxwriter library for creating Excel XLSX | ||
* relationships files. | ||
|
@@ -47,7 +47,7 @@ extern "C" { | |
#endif | ||
/* *INDENT-ON* */ | ||
|
||
lxw_relationships *lxw_relationships_new(); | ||
lxw_relationships *lxw_relationships_new(void); | ||
void lxw_free_relationships(lxw_relationships *relationships); | ||
void lxw_relationships_assemble_xml_file(lxw_relationships *self); | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* libxlsxwriter | ||
* | ||
* Copyright 2014-2018, John McNamara, [email protected]. See LICENSE.txt. | ||
* Copyright 2014-2019, John McNamara, [email protected]. See LICENSE.txt. | ||
* | ||
* shared_strings - A libxlsxwriter library for creating Excel XLSX | ||
* sst files. | ||
|
@@ -63,7 +63,7 @@ extern "C" { | |
#endif | ||
/* *INDENT-ON* */ | ||
|
||
lxw_sst *lxw_sst_new(); | ||
lxw_sst *lxw_sst_new(void); | ||
void lxw_sst_free(lxw_sst *sst); | ||
struct sst_element *lxw_get_sst_index(lxw_sst *sst, const char *string, | ||
uint8_t is_rich_string); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* libxlsxwriter | ||
* | ||
* Copyright 2014-2018, John McNamara, [email protected]. See LICENSE.txt. | ||
* Copyright 2014-2019, John McNamara, [email protected]. See LICENSE.txt. | ||
* | ||
* styles - A libxlsxwriter library for creating Excel XLSX styles files. | ||
* | ||
|
@@ -38,7 +38,7 @@ extern "C" { | |
#endif | ||
/* *INDENT-ON* */ | ||
|
||
lxw_styles *lxw_styles_new(); | ||
lxw_styles *lxw_styles_new(void); | ||
void lxw_styles_free(lxw_styles *styles); | ||
void lxw_styles_assemble_xml_file(lxw_styles *self); | ||
void lxw_styles_write_string_fragment(lxw_styles *self, char *string); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* libxlsxwriter | ||
* | ||
* Copyright 2014-2018, John McNamara, [email protected]. See LICENSE.txt. | ||
* Copyright 2014-2019, John McNamara, [email protected]. See LICENSE.txt. | ||
* | ||
* theme - A libxlsxwriter library for creating Excel XLSX theme files. | ||
* | ||
|
@@ -28,7 +28,7 @@ extern "C" { | |
#endif | ||
/* *INDENT-ON* */ | ||
|
||
lxw_theme *lxw_theme_new(); | ||
lxw_theme *lxw_theme_new(void); | ||
void lxw_theme_free(lxw_theme *theme); | ||
void lxw_theme_xml_declaration(lxw_theme *self); | ||
void lxw_theme_assemble_xml_file(lxw_theme *self); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
/* | ||
* libxlsxwriter | ||
* | ||
* Copyright 2014-2018, John McNamara, [email protected]. See LICENSE.txt. | ||
* Copyright 2014-2019, John McNamara, [email protected]. See LICENSE.txt. | ||
*/ | ||
|
||
/** | ||
* @file utility.h | ||
* | ||
* @brief Utility functions for libxlsxwriter. | ||
* | ||
* <!-- Copyright 2014-2018, John McNamara, [email protected] --> | ||
* <!-- Copyright 2014-2019, John McNamara, [email protected] --> | ||
* | ||
*/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* libxlsxwriter | ||
* | ||
* Copyright 2014-2018, John McNamara, [email protected]. See LICENSE.txt. | ||
* Copyright 2014-2019, John McNamara, [email protected]. See LICENSE.txt. | ||
*/ | ||
|
||
/** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* libxlsxwriter | ||
* | ||
* Copyright 2014-2018, John McNamara, [email protected]. See LICENSE.txt. | ||
* Copyright 2014-2019, John McNamara, [email protected]. See LICENSE.txt. | ||
*/ | ||
|
||
/** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* libxlsxwriter | ||
* | ||
* Copyright 2014-2018, John McNamara, [email protected]. See LICENSE.txt. | ||
* Copyright 2014-2019, John McNamara, [email protected]. See LICENSE.txt. | ||
* | ||
* xmlwriter - A libxlsxwriter library for creating Excel XLSX | ||
* XML files. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
* | ||
* Used in conjunction with the libxlsxwriter library. | ||
* | ||
* Copyright 2014-2018, John McNamara, [email protected]. See LICENSE.txt. | ||
* Copyright 2014-2019, John McNamara, [email protected]. See LICENSE.txt. | ||
* | ||
*/ | ||
|
||
|
@@ -25,7 +25,7 @@ | |
* Create a new app object. | ||
*/ | ||
lxw_app * | ||
lxw_app_new() | ||
lxw_app_new(void) | ||
{ | ||
lxw_app *app = calloc(1, sizeof(lxw_app)); | ||
GOTO_LABEL_ON_MEM_ERROR(app, mem_error); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
* | ||
* Used in conjunction with the libxlsxwriter library. | ||
* | ||
* Copyright 2014-2018, John McNamara, [email protected]. See LICENSE.txt. | ||
* Copyright 2014-2019, John McNamara, [email protected]. See LICENSE.txt. | ||
* | ||
*/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
* | ||
* Used in conjunction with the libxlsxwriter library. | ||
* | ||
* Copyright 2014-2018, John McNamara, [email protected]. See LICENSE.txt. | ||
* Copyright 2014-2019, John McNamara, [email protected]. See LICENSE.txt. | ||
* | ||
*/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
* | ||
* Used in conjunction with the libxlsxwriter library. | ||
* | ||
* Copyright 2014-2018, John McNamara, [email protected]. See LICENSE.txt. | ||
* Copyright 2014-2019, John McNamara, [email protected]. See LICENSE.txt. | ||
* | ||
*/ | ||
|
||
|
@@ -25,7 +25,7 @@ | |
* Create a new content_types object. | ||
*/ | ||
lxw_content_types * | ||
lxw_content_types_new() | ||
lxw_content_types_new(void) | ||
{ | ||
lxw_content_types *content_types = calloc(1, sizeof(lxw_content_types)); | ||
GOTO_LABEL_ON_MEM_ERROR(content_types, mem_error); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
* | ||
* Used in conjunction with the libxlsxwriter library. | ||
* | ||
* Copyright 2014-2018, John McNamara, [email protected]. See LICENSE.txt. | ||
* Copyright 2014-2019, John McNamara, [email protected]. See LICENSE.txt. | ||
* | ||
*/ | ||
|
||
|
@@ -25,7 +25,7 @@ | |
* Create a new core object. | ||
*/ | ||
lxw_core * | ||
lxw_core_new() | ||
lxw_core_new(void) | ||
{ | ||
lxw_core *core = calloc(1, sizeof(lxw_core)); | ||
GOTO_LABEL_ON_MEM_ERROR(core, mem_error); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
* | ||
* Used in conjunction with the libxlsxwriter library. | ||
* | ||
* Copyright 2014-2018, John McNamara, [email protected]. See LICENSE.txt. | ||
* Copyright 2014-2019, John McNamara, [email protected]. See LICENSE.txt. | ||
* | ||
*/ | ||
|
||
|
@@ -25,7 +25,7 @@ | |
* Create a new custom object. | ||
*/ | ||
lxw_custom * | ||
lxw_custom_new() | ||
lxw_custom_new(void) | ||
{ | ||
lxw_custom *custom = calloc(1, sizeof(lxw_custom)); | ||
GOTO_LABEL_ON_MEM_ERROR(custom, mem_error); | ||
|
Oops, something went wrong.