xref: /aosp_15_r20/external/flac/src/test_libFLAC/crc.h (revision 600f14f40d737144c998e2ec7a483122d3776fbc)
1*600f14f4SXin Li /* test_libFLAC - Unit tester for libFLAC
2*600f14f4SXin Li  * Copyright (C) 2014-2023  Xiph.Org Foundation
3*600f14f4SXin Li  *
4*600f14f4SXin Li  * This program is free software; you can redistribute it and/or
5*600f14f4SXin Li  * modify it under the terms of the GNU General Public License
6*600f14f4SXin Li  * as published by the Free Software Foundation; either version 2
7*600f14f4SXin Li  * of the License, or (at your option) any later version.
8*600f14f4SXin Li  *
9*600f14f4SXin Li  * This program is distributed in the hope that it will be useful,
10*600f14f4SXin Li  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11*600f14f4SXin Li  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12*600f14f4SXin Li  * GNU General Public License for more details.
13*600f14f4SXin Li  *
14*600f14f4SXin Li  * You should have received a copy of the GNU General Public License along
15*600f14f4SXin Li  * with this program; if not, write to the Free Software Foundation, Inc.,
16*600f14f4SXin Li  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17*600f14f4SXin Li  */
18*600f14f4SXin Li 
19*600f14f4SXin Li #ifndef FLAC__TEST_LIBFLAC_CRC_H
20*600f14f4SXin Li #define FLAC__TEST_LIBFLAC_CRC_H
21*600f14f4SXin Li 
22*600f14f4SXin Li #include "FLAC/ordinals.h"
23*600f14f4SXin Li 
24*600f14f4SXin Li FLAC__bool test_crc(void);
25*600f14f4SXin Li 
26*600f14f4SXin Li #endif
27