~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/internal/m_string.h

  • Committer: Mark Atwood
  • Date: 2011-06-22 20:04:22 UTC
  • mfrom: (2318.6.39 rf)
  • Revision ID: me@mark.atwood.name-20110622200422-609npl456o0e5p32
mergeĀ lp:~olafvdspek/drizzle/refactor13

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
 
42
42
#include <drizzled/visibility.h>
43
43
 
44
 
namespace drizzled
45
 
{
46
 
namespace internal
47
 
{
 
44
namespace drizzled {
 
45
namespace internal {
48
46
 
49
47
extern void bmove_upp(unsigned char *dst,const unsigned char *src,size_t len);
50
48
 
64
62
extern  char *strxncpy(char *dst,size_t len, const char *src, ...);
65
63
 
66
64
/* Conversion routines */
67
 
typedef enum {
 
65
typedef enum 
 
66
{
68
67
  MY_GCVT_ARG_FLOAT,
69
68
  MY_GCVT_ARG_DOUBLE
70
69
} my_gcvt_arg_type;