https://github.com/timhopg/42-libft
An implementation of C standard library functions and more for 42 School Lisboa
https://github.com/timhopg/42-libft
42school clang staticlibrary
Last synced: 9 months ago
JSON representation
An implementation of C standard library functions and more for 42 School Lisboa
- Host: GitHub
- URL: https://github.com/timhopg/42-libft
- Owner: TimHopg
- Created: 2024-04-23T17:21:51.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-12-11T14:49:01.000Z (over 1 year ago)
- Last Synced: 2025-03-02T22:41:41.467Z (over 1 year ago)
- Topics: 42school, clang, staticlibrary
- Language: C
- Homepage:
- Size: 1.59 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 42-Libft
A C Lang library

## Table of Contents
- [Introduction](#introduction)
- [Installation](#installation)
- [Usage](#usage)
## Introduction
A [42 School](https://www.42network.org/) project to create a static library of useful clang functions. The library includes our own implementations of many c standard library functions and some additional ones. The library will be expanded as new functions are written.
## Installation
Git clone the repository:
```shell
https://github.com/TimHopg/42-libft-Library-Forty-Two.git
```
Run `make` from within the directory to archive the `libft.a` static library file.
`make clean` will remove object files.
`make fclean` will remove library and object files.
## Usage
To use include the `libft.a` file in your project and include the `libft.h` header in your source code.
Compile as follows:
``` shell
cc main.c -L -lft -o main
```