~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/internal/mf_wcomp.cc

  • Committer: Lee Bieber
  • Date: 2011-03-13 16:37:38 UTC
  • mfrom: (2227.4.18 session2)
  • Revision ID: kalebral@gmail.com-20110313163738-7ti21zk40o2xi3ew
Merge Olaf - Refactor Session

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 
16
16
/* Funktions for comparing with wild-cards */
17
17
 
18
 
#include "config.h"
 
18
#include <config.h>
19
19
 
20
 
#include "drizzled/internal/my_sys.h"
 
20
#include <drizzled/internal/my_sys.h>
21
21
 
22
22
namespace drizzled
23
23
{
31
31
char wild_one='_';
32
32
char wild_prefix= '\\';
33
33
 
34
 
int wild_compare(register const char *str, register const char *wildstr,
35
 
                 bool str_is_pattern)
 
34
int wild_compare(const char *str, const char *wildstr, bool str_is_pattern)
36
35
{
37
36
  char cmp;
38
37