blob: 2905c1d9981dd9b00c1ddaaa5f932ffb8f2b8666 [file] [log] [blame]
Nicolas Capens0bac2852016-05-07 06:09:58 -04001// Copyright 2016 The SwiftShader Authors. All Rights Reserved.
John Bauman89401822014-05-06 15:04:28 -04002//
Nicolas Capens0bac2852016-05-07 06:09:58 -04003// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
John Bauman89401822014-05-06 15:04:28 -04006//
Nicolas Capens0bac2852016-05-07 06:09:58 -04007// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
John Bauman89401822014-05-06 15:04:28 -040014
Alexis Hetu3ef0c0a2015-06-09 11:37:45 -040015#include <limits>
John Bauman89401822014-05-06 15:04:28 -040016
17#include "util.h"
Alexis Hetu3ef0c0a2015-06-09 11:37:45 -040018#include "preprocessor/numeric_lex.h"
John Bauman89401822014-05-06 15:04:28 -040019
Alexis Hetu3ef0c0a2015-06-09 11:37:45 -040020bool atof_clamp(const char *str, float *value)
John Bauman89401822014-05-06 15:04:28 -040021{
Alexis Hetu3ef0c0a2015-06-09 11:37:45 -040022 bool success = pp::numeric_lex_float(str, value);
23 if(!success)
24 *value = std::numeric_limits<float>::max();
25 return success;
26}
27
28bool atoi_clamp(const char *str, int *value)
29{
30 bool success = pp::numeric_lex_int(str, value);
31 if(!success)
32 *value = std::numeric_limits<int>::max();
33 return success;
John Bauman89401822014-05-06 15:04:28 -040034}