Rename libftprintf.h to ft_printf.h

This commit is contained in:
gbaconni
2022-04-29 17:50:40 +02:00
parent 2b5b1de944
commit 077123737c
24 changed files with 41 additions and 27 deletions

View File

@@ -10,7 +10,7 @@
/* */
/* ************************************************************************** */
#include "libftprintf.h"
#include "ft_printf.h"
int ft_eoflags(const char *s)
{

View File

@@ -10,7 +10,7 @@
/* */
/* ************************************************************************** */
#include "libftprintf.h"
#include "ft_printf.h"
static long ft_ltoa_base_len(long n, long nbase);

View File

@@ -10,7 +10,7 @@
/* */
/* ************************************************************************** */
#include "libftprintf.h"
#include "ft_printf.h"
int ft_printf(const char *format, ...)
{

View File

@@ -10,7 +10,7 @@
/* */
/* ************************************************************************** */
#include "libftprintf.h"
#include "ft_printf.h"
int ft_putchar(int c)
{

View File

@@ -10,7 +10,7 @@
/* */
/* ************************************************************************** */
#include "libftprintf.h"
#include "ft_printf.h"
int ft_puts(const char *s)
{

View File

@@ -10,7 +10,7 @@
/* */
/* ************************************************************************** */
#include "libftprintf.h"
#include "ft_printf.h"
char *ft_strrev(char *s)
{

View File

@@ -10,7 +10,7 @@
/* */
/* ************************************************************************** */
#include "libftprintf.h"
#include "ft_printf.h"
int ft_va_char(const char *format, va_list ap)
{

View File

@@ -10,7 +10,7 @@
/* */
/* ************************************************************************** */
#include "libftprintf.h"
#include "ft_printf.h"
int ft_va_decimal(const char *format, va_list ap)
{

View File

@@ -10,7 +10,7 @@
/* */
/* ************************************************************************** */
#include "libftprintf.h"
#include "ft_printf.h"
int ft_va_decimal_bonus(const char *format, va_list ap, char *s)
{

View File

@@ -10,7 +10,7 @@
/* */
/* ************************************************************************** */
#include "libftprintf.h"
#include "ft_printf.h"
static char ft_unescape_char(const char c);
static size_t ft_unescape_len(const char *str);

View File

@@ -10,7 +10,7 @@
/* */
/* ************************************************************************** */
#include "libftprintf.h"
#include "ft_printf.h"
int ft_va_flags_bonus(const char *format, va_list ap)
{

View File

@@ -10,7 +10,7 @@
/* */
/* ************************************************************************** */
#include "libftprintf.h"
#include "ft_printf.h"
int ft_va_hexadecimal(const char *format, va_list ap)
{

View File

@@ -10,7 +10,7 @@
/* */
/* ************************************************************************** */
#include "libftprintf.h"
#include "ft_printf.h"
int ft_va_hexadecimal_bonus(const char *format, va_list ap, char *s)
{

View File

@@ -10,7 +10,7 @@
/* */
/* ************************************************************************** */
#include "libftprintf.h"
#include "ft_printf.h"
int ft_va_other(const char *format, va_list ap)
{

View File

@@ -10,7 +10,7 @@
/* */
/* ************************************************************************** */
#include "libftprintf.h"
#include "ft_printf.h"
int ft_va_percent(const char *format, va_list ap)
{

View File

@@ -10,7 +10,7 @@
/* */
/* ************************************************************************** */
#include "libftprintf.h"
#include "ft_printf.h"
int ft_va_pointer(const char *format, va_list ap)
{

View File

@@ -10,7 +10,7 @@
/* */
/* ************************************************************************** */
#include "libftprintf.h"
#include "ft_printf.h"
int ft_va_precision_bonus(const char *format, va_list ap)
{

View File

@@ -10,7 +10,7 @@
/* */
/* ************************************************************************** */
#include "libftprintf.h"
#include "ft_printf.h"
int ft_va_string(const char *format, va_list ap)
{

View File

@@ -10,7 +10,7 @@
/* */
/* ************************************************************************** */
#include "libftprintf.h"
#include "ft_printf.h"
int ft_va_string_bonus(const char *format, va_list ap, char *s)
{

View File

@@ -10,7 +10,7 @@
/* */
/* ************************************************************************** */
#include "libftprintf.h"
#include "ft_printf.h"
int ft_vprintf(char const *format, va_list ap)
{