File: name.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 (25 lines) | stat: -rw-r--r-- 446 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
 * name.h
 *
 * mangle names w/ and w/o commas
 *
 * Copyright (c) Chris Putnam 2004-2009
 *
 * Source code released under the GPL
 *
 */
#ifndef NAME_H
#define NAME_H

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

extern void name_nocomma( char *start, newstr *outname );
extern void name_comma( char *p, newstr *outname );
extern void name_add( fields *info, char *tag, char *q, int level,
	list *asis, list *corps );


#endif