blob: 383748ff213afaa5680b1b7b9c98393d7875f1b3 [file] [log] [blame] [edit]
// Copyright (c) 2025, Alliance for Open Media. All rights reserved
//
// This source code is subject to the terms of the BSD 2 Clause License and
// the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
// was not distributed with this source code in the LICENSE file, you can
// obtain it at www.aomedia.org/license/software. If the Alliance for Open
// Media Patent License 1.0 was not distributed with this source code in the
// PATENTS file, you can obtain it at www.aomedia.org/license/patent.
#ifndef TESTS_TEST_API_H_
#define TESTS_TEST_API_H_
#include <cstddef>
#include <cstdint>
namespace avifinfo {
// Returns 0 if the API is correct, or aborts the program otherwise.
int TestApi(const uint8_t* data, size_t data_size);
} // namespace avifinfo
#endif // TESTS_TEST_API_H_