summary refs log tree commit diff stats
path: root/c/square-root/src/square_root.h
blob: 849eb9ebce11096e1e51a03620414dd0223c1ea9 (plain) (blame)
1
2
3
4
5
6
#ifndef SQUARE_ROOT_H
#define SQUARE_ROOT_H

unsigned int square_root(unsigned int radicand);

#endif