File: token.h

package info (click to toggle)
bibclean 2.11.4-5
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 5,204 kB
  • ctags: 1,545
  • sloc: ansic: 10,711; makefile: 817; perl: 65; sh: 40; awk: 27; sed: 6
file content (15 lines) | stat: -rw-r--r-- 474 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef TOKEN_H_DEFINED_
#define TOKEN_H_DEFINED_

#if !defined(MAX_TOKEN)
#define MAX_TOKEN	4093	/* internal buffer size; no BibTeX string
				value may be larger than this. */
#endif /* !defined(MAX_TOKEN) */

#define MAX_TOKEN_SIZE	(MAX_TOKEN + 3)	/* Arrays are always dimensioned
				MAX_TOKEN_SIZE, so as to have space
				for an additional pair of braces and a
				trailing NUL, without tedious
				subscript checking in inner loops. */

#endif /* TOKEN_H_DEFINED_ */