~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/lookup_symbol.h

  • Committer: Monty Taylor
  • Date: 2009-02-14 07:28:40 UTC
  • mto: This revision was merged to the branch mainline in revision 885.
  • Revision ID: mordred@inaugust.com-20090214072840-f9njqzo1iz75o87y
Fixed some of Jay's review suggestions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#ifndef DRIZZLED_LOOKUP_SYMBOL_H
22
22
#define DRIZZLED_LOOKUP_SYMBOL_H
23
23
 
24
 
#include <drizzled/lex_symbol.h>
 
24
#include "drizzled/lex_symbol.h"
25
25
 
26
 
const SYMBOL *lookup_symbol(const char *s,
27
 
                            unsigned int len,bool function);
 
26
/* len is unsigned int instead of size_t to match the in_word_set method */
 
27
const SYMBOL *lookup_symbol(const char *s, unsigned int len, bool function);
28
28
 
29
29
#endif /* DRIZZLED_LOOKUP_SYMBOL_H */