8000 GitHub - Pablo-Palma/Printf: "Printf" es una reimplementación personalizada de la función estándar printf en C, creada para ofrecer un control detallado y eficiente de la formateación y salida de texto.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

"Printf" es una reimplementación personalizada de la función estándar printf en C, creada para ofrecer un control detallado y eficiente de la formateación y salida de texto.

Notifications You must be signed in to change notification settings

Pablo-Palma/Printf

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Printf

Welcome to Printf! A personal reimplementation of the well-known printf function from the standard C library. If you're in need of a reliable and versatile printing function for your next C project, you're in the right spot!

📖 Contents

🚀 Features

  • Flexible Formatting: Supports common format specifiers such as %c, %s, %p, %d, %i, %u, %x, %X and %%.
  • Consistent Output: Ensures reliable and predictable results in line with the standard printf behavior.
  • Efficient Code: Optimized for performance without sacrificing readability or expandability.

🔧 Usage

Compilation:

  1. First, compile the required libraries:
make

This will produce the necessary library files, including libftprintf.a.

  1. Compile your program with the ft_printf function:
gcc your_file.c -o your_program_name -L. -lftprintf

Include: Just include the ft_printf.h header in your C project:

#include "ft_printf.h"

📦 Requirements & Installation

  • GCC or another C compiler.
  • make utility.
  • Git (optional).
# Clone the repository
git clone https://github.com/Pablo-Palma/printf.git

# Navigate to the directory
cd printf

# Compile the library
make

# Compile your project with ft_printf
gcc your_project_file.c -o desired_output_name -L. -lftprintf

📞 Contact & Support

Any questions, suggestions, or potential contributions? Don't hesitate to reach out!

Happy coding! 👩‍💻👨‍💻

About

"Printf" es una reimplementación personalizada de la función estándar printf en C, creada para ofrecer un control detallado y eficiente de la formateación y salida de texto.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0