aboutsummaryrefslogtreecommitdiff
path: root/src/sc_parse.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sc_parse.c')
-rw-r--r--src/sc_parse.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/sc_parse.c b/src/sc_parse.c
index aeb9ea9..71dd449 100644
--- a/src/sc_parse.c
+++ b/src/sc_parse.c
@@ -376,3 +376,9 @@ SCBlock *sc_parse(const char *sc)
return blf;
}
+
+
+void sc_delete_text(SCBlock *b1, int p1, SCBlock *b2, int p2)
+{
+ printf("Deleting from %p/%i to %p/%i\n", b1, p1, b2, p2);
+}