Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 13 additions & 4 deletions src/libImaging/Arrow.h
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
// Arrow C Data Interface structure definitions.
//
// These free-standing definitions are published by the Apache Arrow project
// for copying into third-party projects, under the Apache License 2.0:
// https://arrow.apache.org/docs/format/CDataInterface.html#structure-definitions
//
// Copyright The Apache Software Foundation.
// SPDX-License-Identifier: Apache-2.0
//
// Per the specification, the ARROW_C_DATA_INTERFACE guard below is kept exactly
// as-is to avoid duplicate definitions when multiple projects vendor these
// declarations.

#include <stdint.h>
#include <assert.h>

// Apache License 2.0.
// Source apache arrow project
// https://arrow.apache.org/docs/format/CDataInterface.html

#ifndef ARROW_C_DATA_INTERFACE
#define ARROW_C_DATA_INTERFACE

Expand Down
Loading