summaryrefslogtreecommitdiffstats
path: root/src/m_init.c
blob: c14506394a19dc0e4169d7b2f242b414d42b77e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   m_init.c                                           :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   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   */
/*                                                                            */
/* ************************************************************************** */

#include <stdlib.h>

#include "s_struct.h"
#include "u_vars_next.h"

void
	m_init_custom_vars(t_msh *msh)
{
	u_subst_var_value("$PS1", FT_DEFAULT_PS_ONE, msh);
	u_subst_var_value("$PS2", FT_DEFAULT_PS_TWO, msh);
	u_subst_var_value("$PS3", FT_DEFAULT_PS_THR, msh);
	u_subst_var_value("$PS4", FT_DEFAULT_PS_FOU, msh);
	u_subst_var_value("$HISTFILE", FT_DEFAULT_HISTFILE, msh);
}