~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/internal/int2str.cc

Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
#include "config.h"
17
17
#include "drizzled/internal/m_string.h"
18
18
 
 
19
namespace drizzled
 
20
{
 
21
namespace internal
 
22
{
19
23
 
20
24
/*
21
25
  Converts integer to its string representation in decimal notation.
67
71
  while ((*dst++ = *p++) != 0) ;
68
72
  return dst-1;
69
73
}
 
74
 
 
75
} /* namespace internal */
 
76
} /* namespace drizzled */