File: CifScannerInt.h

package info (click to toggle)
librcsb-core-wrapper 1.005-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 16,420 kB
  • ctags: 3,504
  • sloc: xml: 122,915; cpp: 25,250; ansic: 3,737; makefile: 1,033; sh: 784; lex: 294; yacc: 235; perl: 213; python: 121; csh: 30
file content (36 lines) | stat: -rw-r--r-- 750 bytes parent folder | download | duplicates (6)
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
26
27
28
29
30
31
32
33
34
35
36
/*!
** \file CifScannerInt.h
**
** \brief Header file for flex interfacing to CifScanner class.
*/


/* 
  PURPOSE:    A DDL 2.1 compliant CIF file parser.
*/

#ifndef CIF_SCANNER_INT_H
#define CIF_SCANNER_INT_H

#ifdef __cplusplus
extern "C" {
#endif

int ProcessNoneFromScanner();
void ProcessWhiteSpaceFromScanner();
int ProcessDataFromScanner();
int ProcessLoopFromScanner();
void ProcessStopFromScanner();
int ProcessDotFromScanner();
int ProcessQuestionFromScanner();
void ProcessCommentFromScanner();
int ProcessUnderscoreFromScanner();
int ProcessBadStringsFromScanner();
int ProcessSQuotedStringsFromScanner();
int ProcessDQuotedStringsFromScanner();
int ProcessEofFromScanner();

#ifdef __cplusplus
}
#endif
#endif /* CIF_SCANNER_BASE_H */