blob: 327bffe4f1910c778d9a9654b304c5434d98f312 [file] [log] [blame]
ethannicholasb3058bd2016-07-01 08:22:01 -07001/*
2 * Copyright 2016 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "SkSLUtil.h"
9
10namespace SkSL {
11
12int stoi(std::string s) {
13 return atoi(s.c_str());
14}
15
16double stod(std::string s) {
17 return atof(s.c_str());
18}
19
20long stol(std::string s) {
21 return atol(s.c_str());
22}
23
24void sksl_abort() {
25#ifdef SKIA
26 sk_abort_no_print();
27 exit(1);
28#else
29 abort();
30#endif
31}
32
33} // namespace