Rename libftprintf.h to ft_printf.h
This commit is contained in:
@@ -10,7 +10,7 @@
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "libftprintf.h"
|
||||
#include "ft_printf.h"
|
||||
|
||||
int ft_eoflags(const char *s)
|
||||
{
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "libftprintf.h"
|
||||
#include "ft_printf.h"
|
||||
|
||||
static long ft_ltoa_base_len(long n, long nbase);
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "libftprintf.h"
|
||||
#include "ft_printf.h"
|
||||
|
||||
int ft_printf(const char *format, ...)
|
||||
{
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "libftprintf.h"
|
||||
#include "ft_printf.h"
|
||||
|
||||
int ft_putchar(int c)
|
||||
{
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "libftprintf.h"
|
||||
#include "ft_printf.h"
|
||||
|
||||
int ft_puts(const char *s)
|
||||
{
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "libftprintf.h"
|
||||
#include "ft_printf.h"
|
||||
|
||||
char *ft_strrev(char *s)
|
||||
{
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "libftprintf.h"
|
||||
#include "ft_printf.h"
|
||||
|
||||
int ft_va_char(const char *format, va_list ap)
|
||||
{
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "libftprintf.h"
|
||||
#include "ft_printf.h"
|
||||
|
||||
int ft_va_decimal(const char *format, va_list ap)
|
||||
{
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "libftprintf.h"
|
||||
#include "ft_printf.h"
|
||||
|
||||
int ft_va_decimal_bonus(const char *format, va_list ap, char *s)
|
||||
{
|
||||
|
||||
@@ -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);
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "libftprintf.h"
|
||||
#include "ft_printf.h"
|
||||
|
||||
int ft_va_flags_bonus(const char *format, va_list ap)
|
||||
{
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "libftprintf.h"
|
||||
#include "ft_printf.h"
|
||||
|
||||
int ft_va_hexadecimal(const char *format, va_list ap)
|
||||
{
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "libftprintf.h"
|
||||
#include "ft_printf.h"
|
||||
|
||||
int ft_va_hexadecimal_bonus(const char *format, va_list ap, char *s)
|
||||
{
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "libftprintf.h"
|
||||
#include "ft_printf.h"
|
||||
|
||||
int ft_va_other(const char *format, va_list ap)
|
||||
{
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "libftprintf.h"
|
||||
#include "ft_printf.h"
|
||||
|
||||
int ft_va_percent(const char *format, va_list ap)
|
||||
{
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "libftprintf.h"
|
||||
#include "ft_printf.h"
|
||||
|
||||
int ft_va_pointer(const char *format, va_list ap)
|
||||
{
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "libftprintf.h"
|
||||
#include "ft_printf.h"
|
||||
|
||||
int ft_va_precision_bonus(const char *format, va_list ap)
|
||||
{
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "libftprintf.h"
|
||||
#include "ft_printf.h"
|
||||
|
||||
int ft_va_string(const char *format, va_list ap)
|
||||
{
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "libftprintf.h"
|
||||
#include "ft_printf.h"
|
||||
|
||||
int ft_va_string_bonus(const char *format, va_list ap, char *s)
|
||||
{
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "libftprintf.h"
|
||||
#include "ft_printf.h"
|
||||
|
||||
int ft_vprintf(char const *format, va_list ap)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user