summaryrefslogtreecommitdiff
path: root/src/str.c
diff options
context:
space:
mode:
authorMichael Jennings <mej@kainx.org>2002-02-12 05:04:49 +0000
committerMichael Jennings <mej@kainx.org>2002-02-12 05:04:49 +0000
commitf975c4c0badb46e24561694f09585d04d568f3f5 (patch)
treea5ca1a473f783f67d80bff8e08f57ca7c34201b7 /src/str.c
parentafc9cfb2461b973c98beb465016f3f4f46fdf130 (diff)
downloadlibast-f975c4c0badb46e24561694f09585d04d568f3f5.tar.gz
Tue Feb 12 00:03:12 2002 Michael Jennings (mej)
Please ignore the warnings during compile. I didn't want to check this in just yet, but I kinda broke Eterm and committed it. :( SVN revision: 5919
Diffstat (limited to 'src/str.c')
-rw-r--r--src/str.c53
1 files changed, 53 insertions, 0 deletions
diff --git a/src/str.c b/src/str.c
new file mode 100644
index 0000000..32a7d6a
--- /dev/null
+++ b/src/str.c
@@ -0,0 +1,53 @@
+/*
+ * Copyright (C) 1997-2002, Michael Jennings
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to
+ * deal in the Software without restriction, including without limitation the
+ * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
+ * sell copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies of the Software, its documentation and marketing & publicity
+ * materials, and acknowledgment shall be given in the documentation, materials
+ * and software packages that this Software was used.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+ * THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+ * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+ */
+
+static const char cvs_ident[] = "$Id$";
+
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
+#include <libast_internal.h>
+
+/*spif_classname_t spif_str_classname = "spif_str_t";*/
+SPIF_DECL_CLASSNAME(str);
+
+spif_str_t
+spif_str_new(void)
+{
+}
+
+spif_bool_t
+spif_str_del(spif_str_t self)
+{
+}
+
+spif_bool_t
+spif_str_init(spif_str_t self)
+{
+}
+
+spif_bool_t
+spif_str_done(spif_str_t self)
+{
+}