~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/internal/mf_wcomp.cc

  • Committer: Olaf van der Spek
  • Date: 2011-03-06 15:49:49 UTC
  • mto: (2226.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 2227.
  • Revision ID: olafvdspek@gmail.com-20110306154949-zzso0l15mbwi60xb
Provide drizzle/drizzle.h

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