nss_sys/bindings/secport.rs
1/* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4
5use crate::*;
6use std::os::raw::{c_int, c_void};
7
8pub type size_t = usize;
9
10extern "C" {
11 pub fn PORT_FreeArena(arena: *mut PLArenaPool, zero: PRBool);
12 pub fn NSS_SecureMemcmp(a: *const c_void, b: *const c_void, n: size_t) -> c_int;
13}