diff options
author | Egon Schmid <eschmid@php.net> | 2000-02-22 15:48:43 +0000 |
---|---|---|
committer | Egon Schmid <eschmid@php.net> | 2000-02-22 15:48:43 +0000 |
commit | e06c2021c96438d41dc5b408c06c46850e7af92e (patch) | |
tree | 1ba5f5d7d902bb99e20a851ddb34dee56cd916d8 | |
parent | 3b74bbe999131a86f2c4e947cde1aa1101385b6f (diff) | |
download | php-git-e06c2021c96438d41dc5b408c06c46850e7af92e.tar.gz |
More protos.
-rw-r--r-- | ext/bcmath/bcmath.c | 2 | ||||
-rw-r--r-- | ext/dav/dav.c | 2 | ||||
-rw-r--r-- | ext/gd/gdt1.c | 16 | ||||
-rw-r--r-- | ext/hyperwave/hw.c | 2 |
4 files changed, 11 insertions, 11 deletions
diff --git a/ext/bcmath/bcmath.c b/ext/bcmath/bcmath.c index 1e8e25c88b..3bb1aeb38e 100644 --- a/ext/bcmath/bcmath.c +++ b/ext/bcmath/bcmath.c @@ -107,7 +107,7 @@ PHP_FUNCTION(bcadd) /* }}} */ /* {{{ proto string bcsub(string left_operand, string right_operand [, int scale]) - Returns the difference between two arbitrary precision numbers (subtration) */ + Returns the difference between two arbitrary precision numbers */ PHP_FUNCTION(bcsub) { pval **left, **right,**scale_param; diff --git a/ext/dav/dav.c b/ext/dav/dav.c index e11a8e0875..5d9cb5d6bd 100644 --- a/ext/dav/dav.c +++ b/ext/dav/dav.c @@ -241,7 +241,7 @@ int phpdav_mkcol_create_handler(request_rec *r) /************************* EXTENSION FUNCTIONS *************************/ -/* {{{ proto void dav_set_mkcol_handlers(string test, string create) +/* {{{ proto void dav_set_mkcol_handlers(string test, string create) Sets the function to test whether a DAV collection exists for MKCOL */ PHP_FUNCTION(dav_set_mkcol_handlers) { diff --git a/ext/gd/gdt1.c b/ext/gd/gdt1.c index e8f6e9accb..f95dd263ea 100644 --- a/ext/gd/gdt1.c +++ b/ext/gd/gdt1.c @@ -31,7 +31,7 @@ void php_free_ps_enc(char **enc) } /* {{{ proto int imagepsloadfont(string pathname) -Load a new font from specified file */ + Load a new font from specified file */ PHP_FUNCTION(imagepsloadfont) { pval *file; @@ -131,7 +131,7 @@ PHP_FUNCTION(imagepscopyfont) /* }}} */ /* {{{ proto bool imagepsfreefont(int font_index) -Free memory used by a font */ + Free memory used by a font */ PHP_FUNCTION(imagepsfreefont) { pval *fnt; @@ -156,7 +156,7 @@ PHP_FUNCTION(imagepsfreefont) /* }}} */ /* {{{ proto bool imagepsencodefont(int font_index, string filename) -To change a fonts character encoding vector */ + To change a fonts character encoding vector */ PHP_FUNCTION(imagepsencodefont) { pval *fnt, *enc; @@ -195,7 +195,7 @@ PHP_FUNCTION(imagepsencodefont) /* }}} */ /* {{{ proto bool imagepsextendfont(int font_index, double extend) -Extend or or condense (if extend < 1) a font */ + Extend or or condense (if extend < 1) a font */ PHP_FUNCTION(imagepsextendfont) { pval *fnt, *ext; @@ -223,7 +223,7 @@ PHP_FUNCTION(imagepsextendfont) /* }}} */ /* {{{ proto bool imagepsslantfont(int font_index, double slant) -Slant a font */ + Slant a font */ PHP_FUNCTION(imagepsslantfont) { pval *fnt, *slt; @@ -250,7 +250,7 @@ PHP_FUNCTION(imagepsslantfont) /* }}} */ /* {{{ proto array imagepstext(int image, string text, int font, int size, int xcoord, int ycoord [, int space, int tightness, double angle, int antialias]) -Rasterize a string over an image */ + Rasterize a string over an image */ PHP_FUNCTION(imagepstext) { pval *img, *str, *fnt, *sz, *fg, *bg, *sp, *px, *py, *aas, *wd, *ang; @@ -418,8 +418,8 @@ PHP_FUNCTION(imagepstext) } /* }}} */ -/* {{{ proto array imagepsbbox(string text, int font, int size[, int space, int tightness, int angle]) -Return the bounding box needed by a string if rasterized */ +/* {{{ proto array imagepsbbox(string text, int font, int size [, int space, int tightness, int angle]) + Return the bounding box needed by a string if rasterized */ PHP_FUNCTION(imagepsbbox) { pval *str, *fnt, *sz, *sp, *wd, *ang; diff --git a/ext/hyperwave/hw.c b/ext/hyperwave/hw.c index 2ba3861579..34fd2c4001 100644 --- a/ext/hyperwave/hw.c +++ b/ext/hyperwave/hw.c @@ -1252,7 +1252,7 @@ php_printf("%s\n", ptr); /* }}} */ /* {{{ proto string hw_dummy(int link, int id, int msgid) - ??? */ + Hyperwave dummy function */ PHP_FUNCTION(hw_dummy) { pval **arg1, **arg2, **arg3; int link, id, type, msgid; |