csv.h 1.2 KB

12345678910111213141516171819202122232425262728
  1. /*
  2. +----------------------------------------------------------------------+
  3. | XlsWriter Extension |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 2017-2018 The Viest |
  6. +----------------------------------------------------------------------+
  7. | http://www.viest.me |
  8. +----------------------------------------------------------------------+
  9. | Author: viest <[email protected]> |
  10. +----------------------------------------------------------------------+
  11. */
  12. #ifndef PHP_EXT_XLS_WRITER_CSV_H
  13. #define PHP_EXT_XLS_WRITER_CSV_H
  14. #include "common.h"
  15. unsigned int xlsx_to_csv(
  16. zval *stream_resource,
  17. const char *delimiter_str, int delimiter_str_len,
  18. const char *enclosure_str, int enclosure_str_len,
  19. const char *escape_str, int escape_str_len,
  20. xlsxioreadersheet sheet_t,
  21. zval *zv_type_arr_t, zend_long data_type_default,
  22. unsigned int flag, zend_fcall_info *fci, zend_fcall_info_cache *fci_cache
  23. );
  24. #endif // PHP_EXT_XLS_WRITER_CSV_H