~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/option.cc

  • Committer: Monty Taylor
  • Date: 2011-02-13 17:24:18 UTC
  • mfrom: (2159.1.1 remove-lint)
  • mto: This revision was merged to the branch mainline in revision 2166.
  • Revision ID: mordred@inaugust.com-20110213172418-vd210j88hiwk8jih
Removed the lint stuff.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
   along with this program; if not, write to the Free Software
14
14
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA */
15
15
 
16
 
#include <config.h>
17
 
#include <drizzled/internal/my_sys.h>
 
16
#include "config.h"
 
17
#include "drizzled/internal/my_sys.h"
18
18
#include <drizzled/gettext.h>
19
19
 
20
 
#include <drizzled/internal/m_string.h>
21
 
#include <drizzled/internal/my_sys.h>
22
 
#include <drizzled/error.h>
23
 
#include <drizzled/option.h>
24
 
#include <drizzled/typelib.h>
 
20
#include "drizzled/internal/m_string.h"
 
21
#include "drizzled/internal/my_sys.h"
 
22
#include "drizzled/error.h"
 
23
#include "drizzled/option.h"
 
24
#include "drizzled/typelib.h"
25
25
 
26
26
#include <stdio.h>
27
27
#include <stdlib.h>
724
724
2.) Returns -1 if strings differ, 0 if they are equal
725
725
   */
726
726
 
727
 
  bool getopt_compare_strings(const char *s, const char *t,
 
727
  bool getopt_compare_strings(register const char *s, register const char *t,
728
728
      uint32_t length)
729
729
  {
730
730
    char const *end= s + length;