summaryrefslogtreecommitdiffstats
path: root/gfx/skia/skia/src/base/SkUtils.cpp
blob: b9852e938986b379a07eaf4ab3517779d3bc5378 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * Copyright 2006 The Android Open Source Project
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#include "src/base/SkUtils.h"

const char SkHexadecimalDigits::gUpper[16] =
    { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' };
const char SkHexadecimalDigits::gLower[16] =
    { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f' };