1 // SPDX-License-Identifier: CDDL-1.0 2 /* 3 * CDDL HEADER START 4 * 5 * This file and its contents are supplied under the terms of the Common 6 * Development and Distribution License ("CDDL"), version 1.0. You may only use 7 * this file in accordance with the terms of version 1.0 of the CDDL. 8 * 9 * A full copy of the text of the CDDL should have accompanied this source. A 10 * copy of the CDDL is also available via the Internet at 11 * http://www.illumos.org/license/CDDL. 12 * 13 * CDDL HEADER END 14 */ 15 16 /* 17 * Copyright (c) 2026 by Garth Snyder. All rights reserved. 18 */ 19 20 #ifndef _ZSTREAM_VALIDATE_H 21 #define _ZSTREAM_VALIDATE_H 22 23 #ifdef __cplusplus 24 extern "C" { 25 #endif 26 27 #include "zstream_io.h" 28 29 chain_step_t 30 serial_validate_records(void); 31 32 #ifdef __cplusplus 33 } 34 #endif 35 36 #endif /* _ZSTREAM_VALIDATE_H */ 37