~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/internal/int2str.cc

  • Committer: Monty Taylor
  • Date: 2010-02-05 08:11:15 UTC
  • mfrom: (1283 build)
  • mto: (1273.13.43 fix_is)
  • mto: This revision was merged to the branch mainline in revision 1300.
  • Revision ID: mordred@inaugust.com-20100205081115-dr82nvrwv4lvw7sd
Merged trunk.

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 */