-
Notifications
You must be signed in to change notification settings - Fork 1
/
minify.h
executable file
·43 lines (30 loc) · 1.3 KB
/
minify.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/************************************************************************************************************
NAME
array.h
DESCRIPTION
Definitions for buffered arrays.
AUTHOR
Christian Vigh, 10/2014.
HISTORY
tbd
************************************************************************************************************/
# ifndef __MINIFY_H__
# define __MINIFY_H__
language_block ( C ) ;
/*-----------------------------------------------------------------------------------------------------------
External array functions.
*-----------------------------------------------------------------------------------------------------------*/
extern PHP_FUNCTION ( minify_php ) ;
extern PHP_FUNCTION ( minify_php_stream ) ;
extern PHP_FUNCTION ( minify_php_string ) ;
extern THRAK_API zend_bool internal_minify_php ( char * filename,
char * input_content,
int input_content_length,
zend_bool preserve_newlines,
char ** output_content,
int * output_content_length
TSRMLS_DC ) ;
extern void minify_initialize ( THRAK_INIT_FUNC_ARGS ) ;
extern void minify_shutdown ( THRAK_SHUTDOWN_FUNC_ARGS ) ;
end_language_block ( C ) ;
# endif /* __MINIFY_H__ */