summaryrefslogtreecommitdiff
path: root/sxmlc.c
diff options
context:
space:
mode:
Diffstat (limited to 'sxmlc.c')
-rw-r--r--sxmlc.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/sxmlc.c b/sxmlc.c
new file mode 100644
index 0000000..1bbf13c
--- /dev/null
+++ b/sxmlc.c
@@ -0,0 +1,20 @@
+#include <stdio.h>
+#include <stdlib.h>
+
+#include "sxmlclib.h"
+
+int process(char *fn) {
+
+ printf("\n");
+ return 0;
+}
+
+int main(int argc, char *argv[]) {
+
+ for (int i = 1; i < argc; i++) {
+ process(argv[i]);
+ }
+
+ return 0;
+}
+