xref: /ext-ds/src/php/classes/php_deque_ce.h (revision f4fee1ad)
1 #ifndef DS_DEQUE_CE_H
2 #define DS_DEQUE_CE_H
3 
4 #include "php.h"
5 #include "../../common.h"
6 #include "../arginfo.h"
7 
8 extern zend_class_entry *php_ds_deque_ce;
9 
10 ARGINFO_OPTIONAL_ZVAL(Deque___construct, values);
11 ARGINFO_NONE_RETURN_OBJ(Deque_getIterator, Traversable);
12 
13 
14 void php_ds_register_deque();
15 
16 #endif
17