/[ghosts]/ghosts/gedcomparser/src/GEDCOMParser/personalnamelexer.lxx
ViewVC logotype

Diff of /ghosts/gedcomparser/src/GEDCOMParser/personalnamelexer.lxx

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1 by cpcp, Wed Oct 16 17:33:11 2002 UTC revision 1.2 by cpcp, Tue Nov 12 21:25:21 2002 UTC
# Line 0  Line 1 
1    /**
2        Copyright 2002 Cyril Picard
3    
4        This file is part of the GEDCOMParser library
5        (developed within the Genealogy Free Software Tools project).
6    
7        The GEDCOMParser library is free software; you can redistribute it and/or modify
8        it under the terms of the GNU General Public License as published by
9        the Free Software Foundation; either version 2 of the License, or
10        (at your option) any later version.
11    
12        The GEDCOMParser library is distributed in the hope that it will be useful,
13        but WITHOUT ANY WARRANTY; without even the implied warranty of
14        MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15        GNU General Public License for more details.
16    
17        You should have received a copy of the GNU General Public License
18        along with the GEDCOMParser library ; if not, write to the Free Software
19        Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20    
21    **/
22    
23    %{
24    
25    #include "GEDCOMParser/personalnameparser_decl.hh"
26    #include "GEDCOMParser/personalnameparser.h"
27    #include <iostream>
28    
29    %}
30    
31    %option prefix="personalname" outfile="lex.yy.c"
32    
33    %%
34    "/" { yylval = personalnametext; return SURNAME_DELIMITER; }
35    . { yylval = personalnametext; return CAR; }
36    %%
37    
38    int yywrap(void)
39    {
40      return 1;
41    }

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26