summary refs log blame commit diff stats
path: root/c/difference-of-squares/src/difference_of_squares.h
blob: cbb65f282d3250c43d3321db7ea0132084d348eb (plain) (tree)
1
2
3
4
5
6
7
8







                                                        
#ifndef DIFFERENCE_OF_SQUARES_H
#define DIFFERENCE_OF_SQUARES_H

unsigned int sum_of_squares(unsigned int number);
unsigned int square_of_sum(unsigned int number);
unsigned int difference_of_squares(unsigned int number);

#endif