23 lines
861 B
C
23 lines
861 B
C
/*
|
|
+----------------------------------------------------------------------+
|
|
| XlsWriter Extension |
|
|
+----------------------------------------------------------------------+
|
|
| Copyright (c) 2017-2018 The Viest |
|
|
+----------------------------------------------------------------------+
|
|
| http://www.viest.me |
|
|
+----------------------------------------------------------------------+
|
|
| Author: viest <dev@service.viest.me> |
|
|
+----------------------------------------------------------------------+
|
|
*/
|
|
|
|
#ifndef PHP_EXT_XLS_EXPORT_FORMAT_H
|
|
#define PHP_EXT_XLS_EXPORT_FORMAT_H
|
|
|
|
#include "common.h"
|
|
|
|
extern zend_class_entry *vtiful_format_ce;
|
|
|
|
VTIFUL_STARTUP_FUNCTION(format);
|
|
|
|
#endif
|