This repository has been archived on 2023-11-05. You can view files and clone it, but cannot push or open issues or pull requests.
wasm-micro-runtime/samples/spawn-thread/wasm-apps/sum.c

16 lines
273 B
C
Raw Normal View History

2020-08-04 17:40:45 +08:00
/*
* Copyright (C) 2019 Intel Corporation. All rights reserved.
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
*/
int
sum(int start, int length)
2020-08-04 17:40:45 +08:00
{
int sum = 0, i;
for (i = start; i < start + length; i++) {
sum += i;
}
return sum;
}