mirror of
https://github.com/pkivolowitz/asm_book.git
synced 2026-06-21 05:46:51 +08:00
10 lines
No EOL
173 B
C
10 lines
No EOL
173 B
C
long Sum(long * values, long length)
|
|
{
|
|
long sum = 0;
|
|
long * end = values + length;
|
|
while (values < end)
|
|
{
|
|
sum += *(values++);
|
|
}
|
|
return sum;
|
|
} |