~gz/ubuntu/wily/steam/new_rel_udev_rules

« back to all changes in this revision

Viewing changes to sources/wiki/yyexternals.h

  • Committer: Package Import Robot
  • Author(s): Felix Geyer
  • Date: 2013-10-29 19:51:18 UTC
  • mfrom: (1.1.4) (0.1.4 trusty-proposed)
  • Revision ID: package-import@ubuntu.com-20131029195118-b9bxciz5hwx5z459
Tags: 1:1.0.0.39-2ubuntu1
Add an epoch to the version number as there was an unrelated steam package
in the archive with a higher version number.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * yyexternals.h
3
 
 *
4
 
 * external functions and variables needed by the lexer
5
 
 */
6
 
 
7
 
#ifndef YYEXTERNALS_H
8
 
#define YYEXTERNALS_H
9
 
 
10
 
 
11
 
/* yyin is an external FILE* */
12
 
#include <stdio.h>
13
 
 
14
 
/* Scanner end-of-file marker */
15
 
#define YYEOF 0
16
 
 
17
 
 
18
 
/*
19
 
 * Variables used by the scanner
20
 
 *
21
 
 * yyin : file scanner reads from
22
 
 * yytext : text of the token the scanner just read
23
 
 * scanner_line_count : helps scanner keep track of line numbers
24
 
 */
25
 
extern FILE *yyin;
26
 
extern char *yytext;
27
 
 
28
 
#define yylex wiki_yylex
29
 
 
30
 
/* 
31
 
 * Function prototypes:
32
 
 * yylex : calls to the lexer
33
 
 */
34
 
int wiki_yylex( void );
35
 
void wiki_scan_buffer(char* buf);
36
 
 
37
 
#endif
38
 
 
39
 
 
40
 
 
41
 
 
42
 
 
43
 
 
44