~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzletest.cc

Fixed -Wmissing-declarations

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
 
65
65
using namespace std;
66
66
 
 
67
extern "C"
 
68
{
 
69
  unsigned char *get_var_key(const unsigned char* var, size_t *len, bool);
 
70
  bool get_one_option(int optid, const struct my_option *, char *argument);
 
71
}
 
72
 
67
73
#define MAX_VAR_NAME_LENGTH    256
68
74
#define MAX_COLUMNS            256
69
75
#define MAX_EMBEDDED_SERVER_ARGS 64
522
528
  options are passed.
523
529
*/
524
530
 
525
 
void append_os_quoted(string *str, const char *append, ...)
 
531
static void append_os_quoted(string *str, const char *append, ...)
526
532
{
527
533
  const char *quote_str= "\'";
528
534
  const uint32_t  quote_len= 1;
1592
1598
}
1593
1599
 
1594
1600
 
1595
 
extern "C"
1596
1601
unsigned char *get_var_key(const unsigned char* var, size_t *len, bool)
1597
1602
{
1598
1603
  register char* key;
4685
4690
}
4686
4691
 
4687
4692
 
4688
 
extern "C" bool
4689
 
get_one_option(int optid, const struct my_option *, char *argument)
 
4693
bool get_one_option(int optid, const struct my_option *, char *argument)
4690
4694
{
4691
4695
  char *endchar= NULL;
4692
4696
  uint64_t temp_drizzle_port= 0;