~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_string.h

  • Committer: Brian Aker
  • Date: 2010-01-27 19:09:05 UTC
  • mfrom: (1271.2.15 rot-13)
  • Revision ID: brian@gaz-20100127190905-a60d1px4bzuz4q50
Merge rot13()

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
#include <cassert>
32
32
#include <cstdlib>
33
33
#include <cstring>
 
34
#include <string>
34
35
 
35
36
class String;
36
37
 
43
44
extern "C" {
44
45
#endif
45
46
 
 
47
  std::string String_to_std_string(String const& s);
 
48
  String* set_String_from_std_string(String* s, std::string const& cs);
 
49
 
46
50
  int sortcmp(const String *a,const String *b, const CHARSET_INFO * const cs);
47
51
  int stringcmp(const String *a,const String *b);
48
52
  String *copy_if_not_alloced(String *a,String *b,uint32_t arg_length);