/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   u_path.h                                           :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: rbousset <marvin@42.fr>                    +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   Created: 2020/02/14 17:19:27 by rbousset          #+#    #+#             */
/*   Updated: 2020/02/14 17:19:29 by rbousset         ###   ########lyon.fr   */
/*                                                                            */
/* ************************************************************************** */

#ifndef FT_U_PATH_H
# define FT_U_PATH_H

# include <stddef.h>

# include "s_struct.h"

struct		s_path
{
	char	*tok_path;
	size_t	dstsize;
};

uint8_t		u_search_in_path(char fullpath[],
							const char com[],
							size_t dstsize,
							t_msh *msh);

#endif