summary refs log tree commit diff stats
path: root/c/square-root/src/square_root.c
blob: a0232c75f2b79294c0b81fa8865ce87887250a0e (plain) (blame)
1
2
3
4
5
#include "square_root.h"

unsigned int square_root(unsigned int radicand) {
    return radicand;
}