about summary refs log tree commit diff
path: root/edit.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-02-04 20:23:55 -0500
committerJune McEnroe <june@causal.agency>2020-02-04 20:23:55 -0500
commit9944dc484bf8cc7d5f1c506610a0593202bb5f92 (patch)
treecd5e669ae807905462efe2a4f2c96299cb9e699d /edit.c
parentAlign word wrapping with tab character (diff)
downloadcatgirl-9944dc484bf8cc7d5f1c506610a0593202bb5f92.tar.gz
catgirl-9944dc484bf8cc7d5f1c506610a0593202bb5f92.zip
Split showing style codes and word wrapping
Diffstat (limited to 'edit.c')
-rw-r--r--edit.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/edit.c b/edit.c
new file mode 100644
index 0000000..446e0e9
--- /dev/null
+++ b/edit.c
@@ -0,0 +1,30 @@
+/* Copyright (C) 2020  C. McEnroe <june@causal.agency>
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ */
+
+#include <err.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <sysexits.h>
+
+#include "chat.h"
+
+const char *editHead(void) {
+	return "foo\0033bar";
+}
+
+const char *editTail(void) {
+	return "baz\3";
+}