summaryrefslogtreecommitdiff
path: root/ext/standard/php_smart_str.h
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>2001-08-11 17:03:37 +0000
committerZeev Suraski <zeev@php.net>2001-08-11 17:03:37 +0000
commitc0404f46311e5b519dc51697e181bb39ca8d09d2 (patch)
tree291959f75d7b2a3f3e171830ed6eea76b5d98b4d /ext/standard/php_smart_str.h
parentf6f6c4d7e63d2eaf4ece7aee66f46a013b29bffa (diff)
downloadphp-git-c0404f46311e5b519dc51697e181bb39ca8d09d2.tar.gz
Whitespace
Diffstat (limited to 'ext/standard/php_smart_str.h')
-rw-r--r--ext/standard/php_smart_str.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/standard/php_smart_str.h b/ext/standard/php_smart_str.h
index e90e664eb2..167fc1b643 100644
--- a/ext/standard/php_smart_str.h
+++ b/ext/standard/php_smart_str.h
@@ -30,7 +30,7 @@
#define SMART_STR_PREALLOC 128
#endif
-#define smart_str_alloc(d,n,what) {\
+#define smart_str_alloc(d, n, what) {\
if (!d->c) d->len = d->a = 0; \
newlen = d->len + n; \
if (newlen >= d->a) {\
@@ -44,9 +44,9 @@
#define smart_str_appendc(dest, c) smart_str_appendc_ex(dest, c, 0)
#define smart_str_free(s) smart_str_free_ex(s, 0)
-#define smart_str_appendl(dest,src,len) smart_str_appendl_ex(dest,src,len,0)
-#define smart_str_append(dest, src) smart_str_append_ex(dest,src,0)
-#define smart_str_append_long(dest, val) smart_str_append_long_ex(dest,val,0)
+#define smart_str_appendl(dest, src, len) smart_str_appendl_ex(dest, src, len, 0)
+#define smart_str_append(dest, src) smart_str_append_ex(dest, src, 0)
+#define smart_str_append_long(dest, val) smart_str_append_long_ex(dest, val, 0)
static inline void smart_str_appendc_ex(smart_str *dest, char c, int what)
{