summaryrefslogtreecommitdiffstats
path: root/src/maps.h
diff options
context:
space:
mode:
authormongo <mongo@iomega>2016-04-15 16:20:17 -0300
committermongo <mongo@iomega>2016-04-15 16:20:17 -0300
commitf686ba184e0af3fd37aa8a743631a7a376f30843 (patch)
treee9a48dc691511a2961f93163944ba0ca1a84e5b3 /src/maps.h
parentc0a088d7a4bc61e6e69fa5bd8964c39f68507c71 (diff)
Renamed src.scim2 to src
Diffstat (limited to 'src/maps.h')
-rwxr-xr-xsrc/maps.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/maps.h b/src/maps.h
new file mode 100755
index 0000000..32b4938
--- /dev/null
+++ b/src/maps.h
@@ -0,0 +1,22 @@
+#include "input.h"
+
+struct map {
+ int mode;
+ short recursive;
+ struct block * in;
+ struct block * out;
+ struct map * psig;
+};
+typedef struct map map;
+
+extern unsigned int curmode;
+
+int replace_maps (struct block * b);
+struct block * get_mapbuf_str (char * str);
+void del_maps ();
+map * get_last_map();
+int exists_map(char * in, int mode);
+void add_map(char * in, char * out, int mode, short recursive);
+void del_map(char * in, int mode);
+void get_mapstr_buf (struct block * b, char * str);
+void get_mappings(char * salida);