/* * This file is part of the libjaylink project. * * Copyright (C) 2014-2015 Marc Schink * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * 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 . */ #include #include "libjaylink.h" /** * @file * * Utility functions. */ /** * Check for a capability. * * The capabilities are expected to be stored in a bit array consisting of one * or more bytes where each individual bit represents a capability. The first * bit of this array is the least significant bit of the first byte and the * following bits are sequentially numbered in order of increasing bit * significance and byte index. A set bit indicates a supported capability. * * @param[in] caps Buffer with capabilities. * @param[in] cap Bit position of the capability to check for. * * @retval true Capability is supported. * @retval false Capability is not supported or invalid argument. * * @since 0.1.0 */ JAYLINK_API bool jaylink_has_cap(const uint8_t *caps, uint32_t cap) { if (!caps) return false; if (caps[cap / 8] & (1 << (cap % 8))) return true; return false; }