mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-26 22:35:43 +00:00
11 lines
288 B
C++
11 lines
288 B
C++
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT License.
|
|
|
|
#pragma once
|
|
#include <string>
|
|
|
|
// forward declaration
|
|
struct OrtAllocator;
|
|
namespace onnxruntime {
|
|
char* StrDup(const std::string& str, OrtAllocator* allocator);
|
|
} // namespace onnxruntime
|