}
-/* {{{ proto int aspell_new(string master[, string personal])
+/* {{{ proto int aspell_new(string master [, string personal])
Load a dictionary */
PHP_FUNCTION(aspell_new)
{
/* }}} */
-/* {{{ proto array aspell_suggest(aspell int,string word)
+/* {{{ proto array aspell_suggest(aspell int, string word)
Return array of Suggestions */
PHP_FUNCTION(aspell_suggest)
{
}
/* }}} */
-/* {{{ proto int aspell_check(aspell int,string word)
+/* {{{ proto int aspell_check(aspell int, string word)
Return if word is valid */
PHP_FUNCTION(aspell_check)
{
}
/* }}} */
-/* {{{ proto int aspell_check_raw(aspell int,string word)
- Return if word is valid, ignoring case or trying to trim it in any way*/
+/* {{{ proto int aspell_check_raw(aspell int, string word)
+ Return if word is valid, ignoring case or trying to trim it in any way */
PHP_FUNCTION(aspell_check_raw)
{
pval **scin,**word;
/* }}} */
-/* {{{ proto string wddx_serialize_value(mixed var [, string comment ])
+/* {{{ proto string wddx_serialize_value(mixed var [, string comment])
Creates a new packet and serializes the given value */
PHP_FUNCTION(wddx_serialize_value)
{
/* }}} */
-/* {{{ proto string wddx_serialize_vars(. . .)
+/* {{{ proto string wddx_serialize_vars(mixed var_name [, ...])
Creates a new packet and serializes given variables into a struct */
PHP_FUNCTION(wddx_serialize_vars)
{
return packet;
}
-/* {{{ proto int wddx_packet_start([ string comment ])
+/* {{{ proto int wddx_packet_start([string comment])
Starts a WDDX packet with optional comment and returns the packet id */
PHP_FUNCTION(wddx_packet_start)
{
/* }}} */
-/* {{{ proto int wddx_add_vars(int packet_id, . . .)
+/* {{{ proto int wddx_add_vars(int packet_id [, ...])
Serializes given variables and adds them to packet given by packet_id */
PHP_FUNCTION(wddx_add_vars)
{
/* }}} */
-/* {{{ proto mixed wddx_deserialize(string packet)
+/* {{{ proto mixed wddx_deserialize(string packet)
Deserializes given packet and returns a PHP value */
PHP_FUNCTION(wddx_deserialize)
{