aboutsummaryrefslogtreecommitdiff
path: root/gfsm/gfsm/src/libgfsm/tests/alphachurn.c
diff options
context:
space:
mode:
Diffstat (limited to 'gfsm/gfsm/src/libgfsm/tests/alphachurn.c')
-rw-r--r--gfsm/gfsm/src/libgfsm/tests/alphachurn.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/gfsm/gfsm/src/libgfsm/tests/alphachurn.c b/gfsm/gfsm/src/libgfsm/tests/alphachurn.c
new file mode 100644
index 0000000..8ea47a8
--- /dev/null
+++ b/gfsm/gfsm/src/libgfsm/tests/alphachurn.c
@@ -0,0 +1,11 @@
+#include <gfsmAlphabet.h>
+#include <stdlib.h>
+
+int main (void) {
+ gfsmStringAlphabet *a = gfsm_string_alphabet_new();
+
+ gfsm_string_alphabet_load_filename(a,"test.lab");
+ gfsm_string_alphabet_save_filename(a,"-");
+
+ return 0;
+}