summaryrefslogtreecommitdiff
path: root/support/texlab/crates/bibutils_sys/src/title.h
diff options
context:
space:
mode:
Diffstat (limited to 'support/texlab/crates/bibutils_sys/src/title.h')
-rw-r--r--support/texlab/crates/bibutils_sys/src/title.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/support/texlab/crates/bibutils_sys/src/title.h b/support/texlab/crates/bibutils_sys/src/title.h
new file mode 100644
index 0000000000..6f9e4fb8d3
--- /dev/null
+++ b/support/texlab/crates/bibutils_sys/src/title.h
@@ -0,0 +1,20 @@
+/*
+ * title.h
+ *
+ * process titles into title/subtitle pairs for MODS
+ *
+ * Copyright (c) Chris Putnam 2004-2019
+ *
+ * Source code released under the GPL verison 2
+ *
+ */
+#ifndef TITLE_H
+#define TITLE_H
+
+#include "str.h"
+#include "fields.h"
+
+int title_process( fields *info, const char *tag, const char *value, int level, unsigned char nosplittitle );
+void title_combine( str *fullttl, str *mainttl, str *subttl );
+
+#endif