For systems lacking wcscasecmp() More...
#include "config.h"
#include <wchar.h>
#include <wctype.h>
Go to the source code of this file.
Functions | |
int | wcscasecmp (const wchar_t *a, const wchar_t *b) |
Compare two wide-character strings, ignoring case. | |
For systems lacking wcscasecmp()
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.
Definition in file wcscasecmp.c.
int wcscasecmp | ( | const wchar_t * | a, |
const wchar_t * | b | ||
) |
Compare two wide-character strings, ignoring case.
a | First string |
b | Second string |
-1 | a precedes b |
0 | a and b are identical |
1 | b precedes a |
Definition at line 41 of file wcscasecmp.c.