Skip to content

C Library πŸ“– πŸ€“ πŸ‘¨β€πŸ’»

Notifications You must be signed in to change notification settings

YaImedgar/libft_42-21

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

15 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Libft

21-School (Ecole42) 'ft_libft' project.

Description

My own implementation of basic functions from C standard library

Implemented functions


FUNCTION Description Library
β€’ isalpha() Checks for an alphabetic character. <ctype.h>
β€’ isdigit() Checks for a digit (0 through 9). <ctype.h>
β€’ isalnum() Checks for an alphanumeric character. <ctype.h>
β€’ isascii() Checks whether c fits into the ASCII character set. <ctype.h>
β€’ isprint() Checks for any printable character. <ctype.h>
β€’ strlen() Calculate the length of a string. <string.h>
β€’ memset() Fill memory with a constant byte. <string.h>
β€’ bzero() Zero a byte string. <string.h>
β€’ memcpy() Copy memory area. <string.h>
β€’ memmove() Function copies n bytes from memory area src to memory area dest. <string.h>
β€’ strlcpy() Copy string to a specific size. <string.h>
β€’ strlcat() Concatenate string to a specific size. <string.h>
β€’ toupper() Convert chat to uppercase <ctype.h>
β€’ tolower() Convert char to lowercase. <ctype.h>
β€’ strchr() Locate character in string (first occurrence). <string.h>
β€’ strrchr() Locate character in string (last occurrence). <string.h>
β€’ strncmp() Compare n bytes of two strings. <string.h>
β€’ memchr() Scan memory for a character. <string.h>
β€’ memcmp() Compare memory areas. <string.h>
β€’ strnstr() Locate a substring in a string. <string.h>
β€’ atoi() <stdlib.h>

About

C Library πŸ“– πŸ€“ πŸ‘¨β€πŸ’»

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published