1 /* 2 * Copyright (c) 2024 Yubico AB. All rights reserved. 3 * Use of this source code is governed by a BSD-style 4 * license that can be found in the LICENSE file. 5 * SPDX-License-Identifier: BSD-2-Clause 6 */ 7 #ifndef REGRESS_EXTERN_H 8 #define REGRESS_EXTERN_H 9 10 #include <fido.h> 11 12 void setup_dummy_io(fido_dev_t *); 13 void set_read_interval(long); 14 uint8_t *wiredata_setup(const uint8_t *, size_t); 15 void wiredata_clear(uint8_t **); 16 17 #endif 18