11 lines
251 B
C
11 lines
251 B
C
#ifndef PHP_DLIB_VECTOR_H
|
|
#define PHP_DLIB_VECTOR_H
|
|
|
|
ZEND_BEGIN_ARG_INFO_EX(dlib_vector_length_arginfo, 0, 0, 2)
|
|
ZEND_ARG_INFO(1, x_arg)
|
|
ZEND_ARG_INFO(1, y_arg)
|
|
ZEND_END_ARG_INFO()
|
|
PHP_FUNCTION(dlib_vector_length);
|
|
|
|
#endif //PHP_DLIB_VECTOR_H
|