~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzle.cc

  • Committer: Monty Taylor
  • Date: 2009-12-21 03:44:51 UTC
  • mto: (1253.2.3 out-of-tree)
  • mto: This revision was merged to the branch mainline in revision 1250.
  • Revision ID: mordred@inaugust.com-20091221034451-hmztoep4qbaqne8w
Trims more out of server_includes.h.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1028
1028
static void window_resize(int sig);
1029
1029
#endif
1030
1030
 
1031
 
static inline int is_prefix(const char *s, const char *t)
1032
 
{
1033
 
  while (*t)
1034
 
    if (*s++ != *t++) return 0;
1035
 
  return 1;                                     /* WRONG */
1036
 
}
1037
 
 
1038
1031
/**
1039
1032
  Shutdown the server that we are currently connected to.
1040
1033