Skip to content

HanzoK/libft

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

libft

Project Overview

libft is a custom implementation of commonly used C standard library functions. It acts as a foundational library reused across most other 42 projects.

The objective for this project is to gain understanding of memory management, string manipulation, and library utilization in C.

Concepts Covered

  • Manual memory allocation (malloc, free)
  • Pointer arithmetic
  • String and memory utilities
  • Linked list implementation (bonus)

Implemented Features

  • libc-like functions (strlen, strdup, memcpy, strchr, ...)
  • Additional utility helpers
  • Bonus: linked list operations

⚙️ Build

make

Usage

Include libft.a in your project:

#include "libft.h"

Compile with:

cc main.c -L. -lft

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors