~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/internal/mf_format.cc

  • Committer: Lee Bieber
  • Date: 2011-03-28 18:11:45 UTC
  • mfrom: (2254.1.2 build)
  • Revision ID: kalebral@gmail.com-20110328181145-tfsb6s5ozhuvhfoq
Merge Patrick - Tweaked dbqp so that the existing slave tests work.
Merge Stewart - remove over 1000 lines of mysys

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
namespace internal
35
35
{
36
36
 
 
37
static size_t strlength(const char *str);
 
38
 
37
39
/*
38
40
  Formats a filename with possible replace of directory of extension
39
41
  Function can handle the case where 'to' == 'name'
142
144
  Return length of string with end-space:s not counted.
143
145
*/
144
146
 
145
 
size_t strlength(const char *str)
 
147
static size_t strlength(const char *str)
146
148
{
147
149
  const char* found= str;
148
150
  const char* pos= str;