summaryrefslogtreecommitdiff
path: root/support/texlab/crates/bibutils_sys/src/title.h
blob: 6f9e4fb8d3f46a68cf7e7a6590e9511492e72b34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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