summaryrefslogtreecommitdiffstats
blob: 6f09345f42f4b34a049962545e33b1930991cd59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * Copyright (c) 2013 Remko Tronçon
 * Licensed under the GNU General Public License.
 * See the COPYING file for more information.
 */

#pragma once

#include <vector>
#include <string>

namespace Swift {
	namespace Lua {
		std::vector<std::string> tokenize(const std::string&);
	}
}