aalib.c:

117 /* {{{ proto resource aa_init()
118    Initialize the AA library */
119 PHP_FUNCTION(aa_init)
120 {
121 	aa_context *c;
122 
123 	if (ZEND_NUM_ARGS() != 0) {
124 		WRONG_PARAM_COUNT;
125 	}
126 
127 	c = aa_init(&mem_d, &aa_defparams, NULL);
128 	ZEND_REGISTER_RESOURCE(return_value, c, le_aalib);
129 }
130 / }}} /