Files
compute-runtime/shared/source/compiler_interface/tokenized_string.h
Jaroslaw Warchulski 195bf66a49 refactor: fix typos
Signed-off-by: Jaroslaw Warchulski <jaroslaw.warchulski@intel.com>
2025-09-22 12:46:41 +02:00

19 lines
421 B
C++

/*
* Copyright (C) 2023-2025 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include "shared/source/utilities/const_stringref.h"
#include "shared/source/utilities/stackvec.h"
namespace NEO {
namespace CompilerOptions {
using TokenizedString = StackVec<ConstStringRef, 32>;
TokenizedString tokenize(ConstStringRef src, char separator = ' ');
} // namespace CompilerOptions
} // namespace NEO