Skip to content

Commit

Permalink
added new style in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Gheorghe Calin Blejdea committed Mar 17, 2023
1 parent 125863b commit 7c6e022
Showing 1 changed file with 32 additions and 2 deletions.
34 changes: 32 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,32 @@
# 42-Libft
asdasdasdas
# 42-Libft Library
The 42-Libft library is a collection of basic functions in the C programming language designed to be used as a support tool in programming projects. This library has been created for the educational program of 42 school and its main objective is to teach students how to develop their own library in C.

In this repository you will find the following functions:

| Function | Explanation |
| ------------- | ------------- |
| isalpha | Checks if a character is an alphabetic letter |
| isdigit | Checks if a character is a digit |
| isalnum | Checks if a character is an alphanumeric character |
| isascii | Checks if a character is an ASCII character |
| isprint | Checks if a character is a printable character |
| strlen | Calculates the length of a string |
| memset | Fills a section of memory with a byte |
| bzero | Fills a section of memory with zeros |
| memcpy | Copies a section of memory to another |
| memmove | Copies a section of memory to another, even if the sections overlap |
| strlcpy | Copies a string to a buffer with a limit on the size of the buffer |
| strlcat | Concatenates a string to a buffer with a limit on the size of the buffer |
| toupper | Converts a character to uppercase |
| tolower | Converts a character to lowercase |
| strchr | Finds the first occurrence of a character in a string |
| strrchr | Finds the last occurrence of a character in a string |
| strncmp | Compares two strings up to a number of characters |
| memchr | Finds the first occurrence of a character in a section of memory |
| memcmp | Compares two sections of memory |
| strnstr | Find the first occurrence of a string in another string up to a number of characters |
| atoi | Converts a string to an integer |

These functions are commonly used in C programming and can be used for a variety of tasks, from manipulating strings to manipulating data in memory.

If you encounter any issues with any of the functions or would like to contribute to this project, please feel free to create an issue or a pull request in this repository.

0 comments on commit 7c6e022

Please sign in to comment.