[go: nahoru, domu]

Skip to content

Commit

Permalink
just to try. del later
Browse files Browse the repository at this point in the history
  • Loading branch information
bnidia committed Sep 24, 2022
1 parent 5c1785d commit f384f39
Show file tree
Hide file tree
Showing 13 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion ft_printf.c → ft_fprintf.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
/* */
/* ************************************************************************** */

#include "ft_printf.h"
#include "ft_fprintf.h"

int ft_printf_cycle(t_pf *z, va_list *ap);
static int process_width_precision(t_pf *z);
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion ft_itoa_base.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
/* */
/* ************************************************************************** */

#include "ft_printf.h"
#include "ft_fprintf.h"

void ft_itoa_base(t_pf *z, t_ull nbr, int base, const char *base_)
{
Expand Down
2 changes: 1 addition & 1 deletion ft_print_out.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
/* */
/* ************************************************************************** */

#include "ft_printf.h"
#include "ft_fprintf.h"

/* 24 bytes is enough because ull 0xffffffffffffffff - 18 chars */
int ft_print_out(t_pf *z)
Expand Down
2 changes: 1 addition & 1 deletion ft_printf_c.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
/* */
/* ************************************************************************** */

#include "ft_printf.h"
#include "ft_fprintf.h"

int ft_print_out(t_pf *z);

Expand Down
2 changes: 1 addition & 1 deletion ft_printf_common_functions.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
/* */
/* ************************************************************************** */

#include "ft_printf.h"
#include "ft_fprintf.h"

int ft_print_out(t_pf *z);

Expand Down
2 changes: 1 addition & 1 deletion ft_printf_d.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
/* */
/* ************************************************************************** */

#include "ft_printf.h"
#include "ft_fprintf.h"

int ft_print_out(t_pf *z);
void ft_itoa_base(t_pf *z, t_ull nbr, int base, const char *base_);
Expand Down
2 changes: 1 addition & 1 deletion ft_printf_p.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
/* */
/* ************************************************************************** */

#include "ft_printf.h"
#include "ft_fprintf.h"
#if defined(__linux__) || defined(linux) || defined(__linux)
# define PREFIX "(nil)"
#else
Expand Down
2 changes: 1 addition & 1 deletion ft_printf_s.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
/* */
/* ************************************************************************** */

#include "ft_printf.h"
#include "ft_fprintf.h"
#if defined(__linux__) || defined(linux) || defined(__linux)
# define LINUX 1
#else
Expand Down
2 changes: 1 addition & 1 deletion ft_printf_u.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
/* */
/* ************************************************************************** */

#include "ft_printf.h"
#include "ft_fprintf.h"

int ft_print_out(t_pf *z);
void ft_itoa_base(t_pf *z, t_ull nbr, int base, const char *base_);
Expand Down
2 changes: 1 addition & 1 deletion ft_printf_x.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
/* */
/* ************************************************************************** */

#include "ft_printf.h"
#include "ft_fprintf.h"

int ft_print_out(t_pf *z);
void ft_itoa_base(t_pf *z, t_ull nbr, int base, const char *base_);
Expand Down
2 changes: 1 addition & 1 deletion main.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "ft_printf.h"
#include "ft_fprintf.h"
#include <stdio.h>
#include <limits.h>

Expand Down
2 changes: 1 addition & 1 deletion reset_width_precision.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
/* */
/* ************************************************************************** */

#include "ft_printf.h"
#include "ft_fprintf.h"

void reset_width_precision(t_pf *z)
{
Expand Down

0 comments on commit f384f39

Please sign in to comment.