Chatterino
SplitCommand.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #include <QStringList>
4 #include <QStringView>
5 
6 namespace chatterino {
7 
8 // Splits the string command into a list of tokens, and returns the list.
9 // Tokens with spaces can be surrounded by double quotes;
10 // three consecutive double quotes represent the quote character itself.
11 //
12 // Backported from QProcess 5.15
13 QStringList splitCommand(QStringView command);
14 
15 } // namespace chatterino
QStringList splitCommand(QStringView command)
Definition: SplitCommand.cpp:47
Definition: Application.cpp:48