#[no_mangle]
pub unsafe extern "C" fn pkgcraft_atom_cmp(
    a1: *mut Atom,
    a2: *mut Atom
) -> c_int
Expand description

Compare two atoms returning -1, 0, or 1 if the first atom is less than, equal to, or greater than the second atom, respectively.

Safety

The arguments must be non-null Atom pointers.