File: metakitfuncs.cpp

package info (click to toggle)
portabase 2.0%2Bgit20110117-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 6,692 kB
  • sloc: cpp: 32,047; sh: 2,675; ansic: 2,320; makefile: 343; xml: 20; python: 16; asm: 10
file content (23 lines) | stat: -rw-r--r-- 659 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * metakitfuncs.cpp
 *
 * (c) 2004,2008-2009 by Jeremy Bowman <jmbowman@alum.mit.edu>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 */

/** @file metakitfuncs.cpp
 * Source file for replacement Metakit string comparison function
 */

#include "metakitfuncs.h"

int compareUsingLocale(const char *s1, const char *s2)
{
    QString str1 = QString::fromUtf8(s1);
    QString str2 = QString::fromUtf8(s2);
    return str1.localeAwareCompare(str2);
}