File: doi.h

package info (click to toggle)
bibutils 4.8-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 3,512 kB
  • ctags: 1,340
  • sloc: ansic: 72,394; csh: 216; makefile: 117
file content (19 lines) | stat: -rw-r--r-- 447 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * doi.h
 *
 * Copyright (c) Chris Putnam 2004-2009
 *
 * Source code released under the GPL
 */
#ifndef DOI_H
#define DOI_H

#include "newstr.h"
#include "fields.h"

extern void doi_to_url( fields *info, int n, char *urltag, newstr *doi_url );
extern int is_doi( char *s );
extern void pmid_to_url( fields *info, int n, char *urltag, newstr *pmid_url );
extern void arxiv_to_url( fields *info, int n, char *urltag, newstr *pmid_url );

#endif