/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   ft_sqrt.c                                          :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: rbousset <marvin@42.fr>                    +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   Created: 2020/02/14 17:07:06 by rbousset          #+#    #+#             */
/*   Updated: 2020/02/14 17:07:06 by rbousset         ###   ########lyon.fr   */
/*                                                                            */
/* ************************************************************************** */

#include <limits.h>

double
	ft_sqrt(double x)
{
	double	i;

	i = 0.0000001;
	while (i * i < x && i * i < INT_MAX)
	{
		i += 0.0000001;
	}
	return (i);
}