summaryrefslogtreecommitdiff
path: root/support/texlab/crates/bibutils_sys/src/marc_auth.h
blob: 3821f4651a1eb9b61a528f58bd83b8dc9016d87f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * marc_auth.h
 *
 * Recognize the MARC authority vocabulary for genre and resource.
 *
 * Copyright (c) Chris Putnam 2008-2019
 *
 * Source code released under the GPL version 2
 *
 */
#ifndef MARC_AUTH_H
#define MARC_AUTH_H

int marc_findgenre( const char *query );
int is_marc_genre( const char *query );
int marc_findresource( const char *query );
int is_marc_resource( const char *query );
char *marc_convertrole( const char *query );

#endif