Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 2 days 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 (9 months ago)
- Default Branch: master
- Last Pushed: 2024-09-19T09:25:16.000Z (4 months ago)
- Last Synced: 2024-11-13T21:16:09.038Z (2 months 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
![libft_grade](./libft_grade.png)
## 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
```