~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/lex_symbol.h

  • Committer: Brian Aker
  • Date: 2008-10-06 06:47:29 UTC
  • Revision ID: brian@tangent.org-20081006064729-2i9mhjkzyvow9xsm
RemoveĀ uint.

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
typedef struct st_symbol {
38
38
  const char *name;
39
39
  uint  tok;
40
 
  uint length;
 
40
  uint32_t length;
41
41
  struct st_sym_group *group;
42
42
} SYMBOL;
43
43
 
45
45
{
46
46
  SYMBOL *symbol;
47
47
  char   *str;
48
 
  uint   length;
 
48
  uint32_t   length;
49
49
} LEX_SYMBOL;
50
50
 
51
51
typedef struct st_sym_group {