xref: /aosp_15_r20/external/jsmn/jsmn.c (revision 420d848fb01a502d3186bd0f49f4e0beb321f5cd)
1*420d848fSAndroid Build Coastguard Worker /*
2*420d848fSAndroid Build Coastguard Worker  * Copyright (C) 2019 The Android Open Source Project
3*420d848fSAndroid Build Coastguard Worker  * All rights reserved.
4*420d848fSAndroid Build Coastguard Worker  *
5*420d848fSAndroid Build Coastguard Worker  * Redistribution and use in source and binary forms, with or without
6*420d848fSAndroid Build Coastguard Worker  * modification, are permitted provided that the following conditions
7*420d848fSAndroid Build Coastguard Worker  * are met:
8*420d848fSAndroid Build Coastguard Worker  *  * Redistributions of source code must retain the above copyright
9*420d848fSAndroid Build Coastguard Worker  *    notice, this list of conditions and the following disclaimer.
10*420d848fSAndroid Build Coastguard Worker  *  * Redistributions in binary form must reproduce the above copyright
11*420d848fSAndroid Build Coastguard Worker  *    notice, this list of conditions and the following disclaimer in
12*420d848fSAndroid Build Coastguard Worker  *    the documentation and/or other materials provided with the
13*420d848fSAndroid Build Coastguard Worker  *    distribution.
14*420d848fSAndroid Build Coastguard Worker  *
15*420d848fSAndroid Build Coastguard Worker  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16*420d848fSAndroid Build Coastguard Worker  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17*420d848fSAndroid Build Coastguard Worker  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
18*420d848fSAndroid Build Coastguard Worker  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
19*420d848fSAndroid Build Coastguard Worker  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
20*420d848fSAndroid Build Coastguard Worker  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
21*420d848fSAndroid Build Coastguard Worker  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
22*420d848fSAndroid Build Coastguard Worker  * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
23*420d848fSAndroid Build Coastguard Worker  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24*420d848fSAndroid Build Coastguard Worker  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
25*420d848fSAndroid Build Coastguard Worker  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26*420d848fSAndroid Build Coastguard Worker  * SUCH DAMAGE.
27*420d848fSAndroid Build Coastguard Worker  */
28*420d848fSAndroid Build Coastguard Worker 
29*420d848fSAndroid Build Coastguard Worker #define JSMN_IMPL
30*420d848fSAndroid Build Coastguard Worker #include "jsmn.h"
31