mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 01:04:57 +08:00
19 lines
415 B
C
19 lines
415 B
C
|
|
/*
|
||
|
|
* Copyright (C) 2023 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 sperator = ' ');
|
||
|
|
|
||
|
|
} // namespace CompilerOptions
|
||
|
|
} // namespace NEO
|