summary refs log tree commit diff stats
path: root/c/difference-of-squares/src/difference_of_squares.h
diff options
context:
space:
mode:
Diffstat (limited to 'c/difference-of-squares/src/difference_of_squares.h')
-rw-r--r--c/difference-of-squares/src/difference_of_squares.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/c/difference-of-squares/src/difference_of_squares.h b/c/difference-of-squares/src/difference_of_squares.h
new file mode 100644
index 0000000..cbb65f2
--- /dev/null
+++ b/c/difference-of-squares/src/difference_of_squares.h
@@ -0,0 +1,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