summaryrefslogtreecommitdiff
path: root/src/str.c
diff options
context:
space:
mode:
authorMichael Jennings <mej@kainx.org>2002-04-05 03:28:43 +0000
committerMichael Jennings <mej@kainx.org>2002-04-05 03:28:43 +0000
commit8d1ed1ade466c6c33983aaba1f152ee632ea27bf (patch)
tree7235ca33b2b8bd175c0cce0712581e246d797cab /src/str.c
parent2af46d73c360b68735b0467e24b181eec08f1625 (diff)
downloadlibast-8d1ed1ade466c6c33983aaba1f152ee632ea27bf.tar.gz
Thu Apr 4 22:24:36 2002 Michael Jennings (mej)
Oops... SVN revision: 6107
Diffstat (limited to 'src/str.c')
-rw-r--r--src/str.c18
1 files changed, 12 insertions, 6 deletions
diff --git a/src/str.c b/src/str.c
index 59c01c1..83c628e 100644
--- a/src/str.c
+++ b/src/str.c
@@ -29,13 +29,19 @@ static const char cvs_ident[] = "$Id$";
#include <libast_internal.h>
+/* *INDENT-OFF* */
spif_const_class_t SPIF_CLASS_VAR(str) = {
-SPIF_DECL_CLASSNAME(str),
- (spif_newfunc_t) spif_str_new,
- (spif_memberfunc_t) spif_str_init,
- (spif_memberfunc_t) spif_str_done,
- (spif_memberfunc_t) spif_str_del,
- (spif_func_t) spif_str_show, (spif_func_t) spif_str_cmp, (spif_func_t) spif_str_dup, (spif_func_t) spif_str_type};
+ SPIF_DECL_CLASSNAME(str),
+ (spif_newfunc_t) spif_str_new,
+ (spif_memberfunc_t) spif_str_init,
+ (spif_memberfunc_t) spif_str_done,
+ (spif_memberfunc_t) spif_str_del,
+ (spif_func_t) spif_str_show,
+ (spif_func_t) spif_str_cmp,
+ (spif_func_t) spif_str_dup,
+ (spif_func_t) spif_str_type
+};
+/* *INDENT-ON* */
const size_t buff_inc = 4096;