mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-02-06 23:15:16 +00:00
16 lines
273 B
C
16 lines
273 B
C
/*
|
|
* Copyright (C) 2019 Intel Corporation. All rights reserved.
|
|
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
*/
|
|
|
|
int
|
|
sum(int start, int length)
|
|
{
|
|
int sum = 0, i;
|
|
|
|
for (i = start; i < start + length; i++) {
|
|
sum += i;
|
|
}
|
|
|
|
return sum;
|
|
} |