summaryrefslogtreecommitdiff
path: root/support/texlab/crates/bibutils_sys/src/modstypes.h
diff options
context:
space:
mode:
Diffstat (limited to 'support/texlab/crates/bibutils_sys/src/modstypes.h')
-rw-r--r--support/texlab/crates/bibutils_sys/src/modstypes.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/support/texlab/crates/bibutils_sys/src/modstypes.h b/support/texlab/crates/bibutils_sys/src/modstypes.h
new file mode 100644
index 0000000000..44c85fc99f
--- /dev/null
+++ b/support/texlab/crates/bibutils_sys/src/modstypes.h
@@ -0,0 +1,24 @@
+/*
+ * modstypes.h
+ *
+ * Copyright (c) Chris Putnam 2008-2019
+ *
+ * Source code released under the GPL version 2
+ *
+ */
+#ifndef MODSTYPES_H
+#define MODSTYPES_H
+typedef struct convert {
+ char *mods; /* old */
+ char *internal; /* new */
+ int pos;
+ int code;
+} convert;
+
+extern convert identifier_types[];
+extern int nidentifier_types;
+
+extern char *mods_find_attrib( char *internal_name, convert *data, int ndata );
+extern char *mods_find_internal( char *mods_name, convert *data, int ndata );
+
+#endif