* Restart from scratch
branched out on dev
removed all previous source files
started test on new env2lst function
* norm: splitted functions in main into appropriate file
Moved lstdelenvelem & env2lst to ms_env.c
Normed out files
* Feat(WIP): Added possibility to cmd_env to execute commands with
altered env.
Added dummy function for cd, echo, setenv & unsetenv
Started work on env copy feature
* feature: switched env from ft_list to specific list
* feature: added execution of commands from path
* feature: added env, setenv & unsetenv builtins
added -i option & command execution to env
added setenv & unsetenv builtins
* Clean-up: normed out files
* Changed comportment on error for check_path functions
* feature: added completion for ~ and ${}
WIP leaks detected on ${} completion
* fix leak on ext need test
* feature: added echo cmd
changed printf ref to ft_printf
* feature: add cd built-in
* Simple norm-out
* moved env functions to libft
* fixed out-of-memory access in extension
* Resolved infinite loop in extension revolving
WIP norming in cd
* Normedout cmd_cd.c
* Normed out functions in cmd_cd
* Normed out funtions
sorting out needed
* removed -fsanitize from Makefile
* corrected env -i crash & SHLVL
* Delete norm.txt
* added put_error_cd2 in put_error_cd.c
* added inline environment
111 lines
2.8 KiB
C
111 lines
2.8 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* tools_oct.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: klebon <klebon@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2018/05/13 20:13:28 by klebon #+# #+# */
|
|
/* Updated: 2019/03/07 22:24:23 by tmaze ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "libft.h"
|
|
|
|
char *handler_oct(uintmax_t nb, t_conv *field)
|
|
{
|
|
int size;
|
|
uintmax_t n;
|
|
char *str;
|
|
|
|
size = set_precision_sizeo(nb, field);
|
|
set_malloc_sizeo(nb, field);
|
|
if (!(str = ft_strnew(field->str_size)))
|
|
return (NULL);
|
|
n = nb;
|
|
while (n)
|
|
{
|
|
str[--size] = n % 8 + '0';
|
|
n /= 8;
|
|
}
|
|
while (--size >= 0 && field->fl_prec)
|
|
str[size] = '0';
|
|
if (field->fl_hashtag)
|
|
str[0] = '0';
|
|
ft_align_oct(str, field);
|
|
return (str);
|
|
}
|
|
|
|
void ft_align_oct_zero(char *str, t_conv *field)
|
|
{
|
|
int i;
|
|
int len;
|
|
|
|
i = 0;
|
|
len = (int)ft_strlen(str);
|
|
if (field->fl_zero == 0 || field->fl_hashtag == 0)
|
|
{
|
|
ft_memmove(str + (field->str_size - len), str, len);
|
|
while (i < field->str_size - len)
|
|
str[i++] = (field->fl_zero) ? '0' : ' ';
|
|
}
|
|
else
|
|
{
|
|
ft_memmove(str + (field->str_size - len + 1), str + 1, len - 1);
|
|
while (++i < field->str_size - len + 1)
|
|
str[i] = '0';
|
|
}
|
|
}
|
|
|
|
void ft_align_oct(char *str, t_conv *field)
|
|
{
|
|
int i;
|
|
|
|
i = 0;
|
|
if ((int)(ft_strlen(str)) < field->str_size)
|
|
{
|
|
if (field->fl_minus == 1)
|
|
{
|
|
while (str[i])
|
|
i++;
|
|
while (i < field->str_size)
|
|
str[i++] = ' ';
|
|
}
|
|
else
|
|
{
|
|
ft_align_oct_zero(str, field);
|
|
}
|
|
}
|
|
}
|
|
|
|
char *select_oct_handler(t_conv *field, va_list ap)
|
|
{
|
|
uintmax_t tmp;
|
|
|
|
if (field->fl_size == h)
|
|
tmp = (uintmax_t)(short unsigned int)va_arg(ap, unsigned int);
|
|
else if (field->fl_size == hh)
|
|
tmp = (uintmax_t)(unsigned char)va_arg(ap, unsigned int);
|
|
else if (field->fl_size == l)
|
|
tmp = (uintmax_t)va_arg(ap, long unsigned int);
|
|
else if (field->fl_size == ll)
|
|
tmp = (uintmax_t)va_arg(ap, unsigned long long int);
|
|
else if (field->fl_size == j)
|
|
tmp = va_arg(ap, uintmax_t);
|
|
else if (field->fl_size == z)
|
|
tmp = (uintmax_t)va_arg(ap, size_t);
|
|
else
|
|
tmp = (uintmax_t)va_arg(ap, unsigned int);
|
|
return (handler_oct(tmp, field));
|
|
}
|
|
|
|
char *handle_output_oct(t_conv *field, va_list ap)
|
|
{
|
|
char *output;
|
|
|
|
if (field->fl_type == O)
|
|
field->fl_size = l;
|
|
output = select_oct_handler(field, ap);
|
|
return (output);
|
|
}
|