diff options
Diffstat (limited to 'src/m_funptr.c')
-rw-r--r-- | src/m_funptr.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/m_funptr.c b/src/m_funptr.c index 4f17827..0bf0d20 100644 --- a/src/m_funptr.c +++ b/src/m_funptr.c @@ -22,15 +22,15 @@ void init_buptr(t_msh *msh) { - msh->bu_ptr[FT_ID_ECHO] = b_echo; - msh->bu_ptr[FT_ID_CD] = b_cd; - msh->bu_ptr[FT_ID_PWD] = b_pwd; - msh->bu_ptr[FT_ID_EXPORT] = b_export; - msh->bu_ptr[FT_ID_UNSET] = b_unset; - msh->bu_ptr[FT_ID_ENV] = b_env; - msh->bu_ptr[FT_ID_EXIT] = b_exit; - msh->bu_ptr[FT_ID_TYPE] = b_type; - msh->bu_ptr[FT_ID_SQB] = b_sqb; - msh->bu_ptr[FT_ID_ALIAS] = b_alias; - msh->bu_ptr[FT_ID_H] = b_h; + msh->bu_ptr[B_ID_ECHO] = b_echo; + msh->bu_ptr[B_ID_CD] = b_cd; + msh->bu_ptr[B_ID_PWD] = b_pwd; + msh->bu_ptr[B_ID_EXPORT] = b_export; + msh->bu_ptr[B_ID_UNSET] = b_unset; + msh->bu_ptr[B_ID_ENV] = b_env; + msh->bu_ptr[B_ID_EXIT] = b_exit; + msh->bu_ptr[B_ID_TYPE] = b_type; + msh->bu_ptr[B_ID_SQB] = b_sqb; + msh->bu_ptr[B_ID_ALIAS] = b_alias; + msh->bu_ptr[B_ID_H] = b_h; } |