summary refs log tree commit diff stats
path: root/c/sum-of-multiples/src/sum_of_multiples.h
blob: 35dd799390ad8308bab9bb3380de08ba6ab6765d (plain) (blame)
1
2
3
4
5
6
7
8
9
#ifndef SUM_OF_MULTIPLES_H
#define SUM_OF_MULTIPLES_H

#include <stddef.h>

unsigned int sum(const unsigned int *factors,
                 const size_t number_of_factors, const unsigned int limit);

#endif