~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/mf_wcomp.cc

  • Committer: Monty Taylor
  • Date: 2009-04-14 19:16:51 UTC
  • mto: (997.2.5 mordred)
  • mto: This revision was merged to the branch mainline in revision 994.
  • Revision ID: mordred@inaugust.com-20090414191651-ltbww6hpqks8k7qk
Clarified instructions in README.

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"
19
 
 
20
 
#include "drizzled/internal/my_sys.h"
21
 
 
22
 
namespace drizzled
23
 
{
24
 
namespace internal
25
 
{
 
18
#include "mysys_priv.h"
26
19
 
27
20
        /* Test if a string is "comparable" to a wild-card string */
28
21
        /* returns 0 if the strings are "comparable" */
93
86
  }
94
87
  return (*str != 0);
95
88
} /* wild_compare */
96
 
 
97
 
} /* namespace internal */
98
 
} /* namespace drizzled */