Libft: Your Very First Own Library
Libft: Your Very First Own Library
Summary: This project aims to code a C library regrouping usual functions that you’ll
be allowed to use in all your other projects.
Contents
I Introduction 2
II Common Instructions 3
IV Bonus part 10
1
Chapter I
Introduction
C programming can be very tedious when one doesn’t have access to those highly useful
standard functions. This project allows you to re-write those functions, understand them,
and learn to use them. This library will help you with all your future C projects.
Take the time to expand your libft throughout the year. But always, make sure to
check which functions are allowed !
2
Chapter II
Common Instructions
• Your project must be written in accordance with the Norm. If you have bonus
files/functions, they are included in the norm check and you will receive a 0 if there
is a norm error inside.
• Your functions should not quit unexpectedly (segmentation fault, bus error, double
free, etc) apart from undefined behaviors. If this happens, your project will be
considered non functional and will receive a 0 during the evaluation.
• All heap allocated memory space must be properly freed when necessary. No leaks
will be tolerated.
• If the subject requires it, you must submit a Makefile which will compile your
source files to the required output with the flags -Wall, -Wextra and -Werror, and
your Makefile must not relink.
• Your Makefile must at least contain the rules $(NAME), all, clean, fclean and
re.
• To turn in bonuses to your project, you must include a rule bonus to your Makefile,
which will add all the various headers, librairies or functions that are forbidden on
the main part of the project. Bonuses must be in a different file _bonus.{c/h}.
Mandatory and bonus part evaluation is done separately.
• If your project allows you to use your libft, you must copy its sources and its
associated Makefile in a libft folder with its associated Makefile. Your project’s
Makefile must compile the library by using its Makefile, then compile the project.
• We encourage you to create test programs for your project even though this work
won’t have to be submitted and won’t be graded. It will give you a chance
to easily test your work and your peers’ work. You will find those tests especially
useful during your defence. Indeed, during defence, you are free to use your tests
and/or the tests of the peer you are evaluating.
• Submit your work to your assigned git repository. Only the work in the git reposi-
tory will be graded. If Deepthought is assigned to grade your work, it will be done
after your peer-evaluations. If an error happens in any section of your work during
Deepthought’s grading, the evaluation will stop.
3
Chapter III
Mandatory part
• If you need subfunctions to write a complex function, you should define these sub-
functions as static to avoid publishing them with your library. It would be a good
habit to do this in your future projects as well.
• You must use the command ar to create your library, using the command libtool
is forbidden.
4
Libft Your very first own library
You must re-code the following functions. These function do not need any external
functions:
• isalpha • toupper
• isdigit
• tolower
• isalnum
• isascii • strchr
• isprint • strrchr
• strlen
• strncmp
• memset
• bzero • memchr
• memcpy • memcmp
• memmove
• strnstr
• strlcpy
• strlcat • atoi
You must also re-code the following functions, using the function “malloc”:
• calloc
• strdup
5
Libft Your very first own library
6
Libft Your very first own library
7
Libft Your very first own library
8
Libft Your very first own library
9
Chapter IV
Bonus part
If you completed the mandatory part, you’ll enjoy taking it further. You can see this last
section as Bonus Points.
Having functions to manipulate memory and strings is very useful, but you’ll soon
discover that having functions to manipulate lists is even more useful.
make bonus will add the bonus functions to the libft.a library.
You’ll use the following structure to represent the elements of your list. This structure
must be added to your libft.h file.
• content : The data contained in the element. The void * allows to store any kind
of data.
• next : The next element’s address or NULL if it’s the last element.
10
Libft Your very first own library
The following functions will allow you to easily use your lists.
11
Libft Your very first own library
12
Libft Your very first own library
13