MCPcopy Create free account
hub / github.com/Genivia/ugrep / cmpint2

Function cmpint2

lib/letter_case.cpp:5–10  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3#include <cstdlib>
4
5static int cmpint2(const void *p, const void *q)
6{
7 int a = *static_cast<const int*>(p);
8 int b = *static_cast<const int*>(q);
9 return a < b ? -1 : a > b ? 1 : 0;
10}
11
12int reflex::Unicode::Tables::tolower(int c)
13{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected