/[bison]/bison/src/state.h
ViewVC logotype

Diff of /bison/src/state.h

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

revision 1.43 by eggert, Wed Dec 11 06:50:40 2002 UTC revision 1.44 by eggert, Fri Dec 13 08:39:01 2002 UTC
# Line 1  Line 1 
1  /* Type definitions for nondeterministic finite state machine for bison,  /* Type definitions for nondeterministic finite state machine for Bison.
2    
3     Copyright (C) 1984, 1989, 2000, 2001, 2002 Free Software     Copyright (C) 1984, 1989, 2000, 2001, 2002 Free Software
4     Foundation, Inc.     Foundation, Inc.
# Line 98  typedef short state_number; Line 98  typedef short state_number;
98  # define STATE_NUMBER_MAXIMUM SHRT_MAX  # define STATE_NUMBER_MAXIMUM SHRT_MAX
99    
100  /* Be ready to map a state_number to an int.  */  /* Be ready to map a state_number to an int.  */
101  # define state_number_as_int(Tok) ((int) (Tok))  static inline int
102    state_number_as_int (state_number s)
103    {
104      return s;
105    }
106    
107    
108  typedef struct state state;  typedef struct state state;

Legend:
Removed from v.1.43  
changed lines
  Added in v.1.44

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