summary refs log tree commit diff stats
path: root/c/square-root/src/square_root.h
diff options
context:
space:
mode:
Diffstat (limited to 'c/square-root/src/square_root.h')
-rw-r--r--c/square-root/src/square_root.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/c/square-root/src/square_root.h b/c/square-root/src/square_root.h
new file mode 100644
index 0000000..849eb9e
--- /dev/null
+++ b/c/square-root/src/square_root.h
@@ -0,0 +1,6 @@
+#ifndef SQUARE_ROOT_H
+#define SQUARE_ROOT_H
+
+unsigned int square_root(unsigned int radicand);
+
+#endif