/* * Copyright 2021, João Valverde * * Wireshark - Network traffic analyzer * By Gerald Combs * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #include "config.h" #include "introspection.h" #include #include static int compare_enum(const void *needle, const void *memb) { return strcmp(needle, ((const ws_enum_t *)memb)->symbol); } const ws_enum_t * ws_enums_bsearch(const ws_enum_t *enums, size_t count, const char *needle) { return bsearch(needle, enums, count, sizeof(ws_enum_t), compare_enum); }